第一种:
样式:
.box{
background-color: yellow;
width: 350px;
height: 100px;
display: flex;
flex-flow: row wrap;
/*align-items: center;*/
/*justify-content: space-between;*/
}
.box>div{
width: 50px;
height: 20px;
margin-right: 10px;
background-color: dodgerblue;
}
.box>div:nth-child(6){
margin-right: 0;
}
效果:
第二种 float 方式
代码:
.box{
background-color: yellow;
width: 350px;
height: 100px;
}
.box>div{
width: 50px;
height: 20px;
margin-right: 10px;
background-color: dodgerblue;
float: left;
}
.box>div:nth-child(6){
margin-right: 0;
}
效果: