flex弹性布局
flex-direction属性
flex-direction属性决定主轴的方向(即项目的排列方向)。
.box {
flex-direction: row | row-reverse | column | column-reverse;
}
flex-wrap属性
.box{
flex-wrap: nowrap | wrap | wrap-reverse;
}
flex-flow
justify-content属性定义了项目在主轴上的对齐方式。
.box {
justify-content: flex-start | flex-end | center | space-between | space-around;
}
justify-content属性
justify-content 定义了在主轴上的排列方式
.box {
justify-content: flex-start | flex-end | center | space-between | space-around;
}
-flex-start(默认值):左对齐
-flex-end:右对齐
-center: 居中
-space-between:两端对齐,项目之间的间隔都相等。
-space-around:每个项目两侧的间隔相等。所以,项目之间的间隔比项目与边框的间隔大一倍。