跳到主要内容

使用 Grid 布局实现的 Flow 组件

· 阅读需 1 分钟
1adybug
子虚伊人
.container {
display: grid;
grid-template-columns: repeat(auto-fill, 100px); /* 固定宽度为 100px */
grid-auto-rows: 100px; /* 固定高度为 100px */
gap: 10px; /* 网格间距 */
}

太牛了