css 布局 自然换行,最后一行左对齐
参考
CSS flex布局最后一行左对齐的常用方法
感谢这位博主
代码
.list {
display: grid; // ←
justify-content: space-between; // ←
grid-template-columns: repeat(auto-fill, @item-width); // ←
grid-gap: 10px;
.item {
width: @item-width; // ←
height: 338px;
margin-bottom: 10px;
}
}