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;
	}
}
posted @ 2023-05-29 11:40  宇宙野牛  阅读(11)  评论(0编辑  收藏  举报