CSS Grid 布局疑难解答:如何在一行中放置 5 个项目?如何防止 Grid 项目宽度增大?

CSS Grid 布局疑难解答:如何在一行中放置 5 个项目?如何防止 Grid 项目宽度增大?

css grid 布局的疑难解答

问题 1:

在 box1 中使用 grid-template-columns: repeat(auto-fill, 20%); 时,无法在 1 行中放置 5 个项目。

回答:

要在一行中放置 5 个项目,可以使用 auto-fit 代替 auto-fill:

grid-template-columns: repeat(auto-fit, calc((100% - 4 * 20px) / 5));

问题 2:

在 box2 中使用 grid-template-columns: auto auto auto auto auto; 时,当项目数量少于 5 个时,项目宽度会增大。

回答:

可以使用 minmax() 函数将项目最小的宽度和最大的宽度限制为相等,以防止宽度增大:

grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);

以上就是CSS Grid 布局疑难解答:如何在一行中放置 5 个项目?如何防止 Grid 项目宽度增大?的详细内容,更多请关注硕下网其它相关文章!