css3常用样式

.box{
//改变轴的方向
flex-direction:column;

//两端对齐
justify-content:space-between;

//换行
flex-wrap: wrap;

//在轴上如何对齐
//center:居中,
//flex-start:在主轴上由左或者上开始排列
//flex-end:在主轴上由右或者下开始排列
//space-around:每个项目两侧的间隔相等

align-items: center;


}