display: flex; 每行固定数量

 示例:每行5个

.flex {
  display: flex;
  flex-wrap: wrap
}

.flex > div {
  width: 20%;
}

 

你可能感兴趣的:(CSS3,flex布局)