使用CSS flex,是否可以每行强制相同数量的项目?
我可以获取要包装的项目,但不能每行具有相同的数字(Fiddle).
.container {
display: flex;
flex-flow: row wrap;
position: relative;
}
.container > div {
padding: 49px;
flex: 1;
Box-sizing: border-Box;
}
这是我想要完成的图表:
最佳答案
可能您正在寻找数量查询,您可以根据列表中的项目数来更改样式
.container {
display: flex;
flex-flow: row wrap;
border: solid 1px green;
}
.container > div {
flex: 1 0;
background-color: lightgreen;
height: 30px;
margin: 5px;
}
.item:first-child:nth-last-child(3),.item:first-child:nth-last-child(3) ~ .item {
flex-basis: 30%;
}
.item:first-child:nth-last-child(4),.item:first-child:nth-last-child(4) ~ .item {
flex-basis: 40%;
}