发布于 2年前
flex 布局 平均分布又可以换行
.aa {
width: 100%;
height: auto;
display: flex;
display: -webkit-flex;
justify-content: space-between;
flex-direction: row;
flex-wrap: wrap;
}
.bb {
margin: 5px;
width: 20%;
height: 30px;
}