获得徽章 0
赞了这篇文章
赞了这篇文章
赞了这篇文章
赞了这篇文章
赞了这篇文章
赞了这篇文章
赞了这篇文章
赞了这篇文章
网格布局
display: grid;
grid-template-columns: minmax(10px、,20px); // 列宽大小在10-20px之间,
grid-auto-flow: column; // 子元素排列方式
grid-auto-columns: 60%; // 子元素占父元素框百分比
overflow-x: scroll; // x方向超出用滚动条展示
grid-template-rows: repeat(3,100px); // 三行,每行100px
grid-template-columns: repeat(3,100px); // 三列,每列100px
grid-column-gap: 20px // 列间距20px,同理可设行间距
// 单位也可以用fr 一个fr单位代表网格容器中可用空间的一等份
display: grid;
grid-template-columns: minmax(10px、,20px); // 列宽大小在10-20px之间,
grid-auto-flow: column; // 子元素排列方式
grid-auto-columns: 60%; // 子元素占父元素框百分比
overflow-x: scroll; // x方向超出用滚动条展示
grid-template-rows: repeat(3,100px); // 三行,每行100px
grid-template-columns: repeat(3,100px); // 三列,每列100px
grid-column-gap: 20px // 列间距20px,同理可设行间距
// 单位也可以用fr 一个fr单位代表网格容器中可用空间的一等份
展开
评论
1
![[呲牙]](http://lf-web-assets.juejin.cn/obj/juejin-web/xitu_juejin_web/img/jj_emoji_2.cd1e2bd.png)