flex 俩列布局

158 阅读1分钟
  1. 在父盒子
ul{
  height: 300px ;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 100%;
}
  1. 子盒子
  width: 150px;
  background: #feff08;

如图: