|
|
.index_product {
columns: 2 150px;
padding: 0 1%;
column-gap: 1%;
}
.index_product li {
break-inside: avoid;
margin-bottom: 20px;
overflow: hidden;
column-gap: 20px;
}
主要的三行代码:
columns: 2 150px; 创建2列,每列最小宽度150px
column-gap: 1%; 设置列之间的间距
break-inside: avoid; 防止项目被分割到不同列
|
|