flex
Flex 是 Flexible Box 的缩写,意为"弹性布局",用来为盒状模型提供最大的灵活性。
任何一个容器都可以指定为 Flex 布局。
注意:设为 Flex 布局以后,子元素的float
、clear
和vertical-align
属性将失效。
容器的属性
- flex-direction
- flex-wrap
- flex-flow
- justify-content
- align-items
- align-content
flex-direction
属性决定主轴的方向(即项目的排列方向)
flex-direction: row | row-reverse | column | column-reverse;
flex-direction: row(默认值):主轴为水平方向,起点在左端。
.box {
display: flex;
flex-direction: row;
}
flex-direction: row-reverse(默认值):主主轴为水平方向,起点在右端。
.box {
display: flex;
flex-direction: row-reverse;
}
flex-direction:column 主轴为垂直方向,起点在上沿。
.box {
display: flex;
flex-direction: column;
}
flex-direction:column-reverse:主轴为垂直方向,起点在下沿。
.box {
display: flex;
flex-direction: column-reverse;
}
flex-wrap属性定义,如果一条轴线排不下,如何换行
flex-wrap: nowrap | wrap | wrap-reverse
flex-wrap: nowrap 默认值,不换行
.box {
display: flex;
flex-wrap: nowrap;
}
flex-wrap: wrap:换行,第一行在上方。
.box {
display: flex;
flex-wrap: wrap;
}
flex-wrap: wrap-reverse:换行,第一行在下方。
.box {
display: flex;
flex-wrap: wrap-reverse;
}
flex-flow属性
flex-flow属性是flex-direction属性和flex-wrap属性的简写形式,默认值为row nowrap;
justify-content属性定义了项目在主轴上的对齐方式。
justify-content: flex-start | flex-end | center | space-between | space-around
justify-content: flex-start(默认值),左对齐
.box {
display: flex;
justify-content: flex-start;
}
justify-content:flex-end
:右对齐
.box {
display: flex;
justify-content: flex-end;
}
justify-content: center; 居中
.box {
display: flex;
justify-content: center;
}
justify-content: space-between 两端对齐,项目之间的间隔都相等。
.box {
display: flex;
justify-content: space-between;
}
justify-content: space-around 每个项目两侧的间隔相等。所以,项目之间的间隔比项目与边框的间隔大一倍。
.box {
display: flex;
justify-content: space-around;
}
align-items属性定义项目在交叉轴上如何对齐。
align-items: flex-start | flex-end | center | baseline | stretch;
align-items: stretch :(默认值):如果项目未设置高度或设为auto,将占满整个容器的高度。
.box {
display: flex;
align-items: stretch ;
}
align-items: flex-start:交叉轴的起点对齐。
.box {
display: flex;
align-items: flex-start;
}
align-items: flex-end:交叉轴的终点对齐。
.box {
display: flex;
align-items: flex-end;
}
align-items: center; 交叉轴的中点对齐
.box {
display: flex;
align-items: center
}
align-items: baseline; 项目的第一行文字的基线对齐。
.box {
display: flex;
align-items: baseline
}
align-content属性定义了多根轴线的对齐方式。如果项目只有一根轴线,该属性不起作用。
align-content: flex-start | flex-end | center | space-between | space-around | stretch;
align-content:stretch; 子元素没有设置高的情况下,轴线占满整个交叉轴。
.box {
display: flex;
flex-flow: row wrap;
align-content: stretch
}
align-content:flex-start:与交叉轴的起点对齐
.box {
display: flex;
flex-flow: row wrap;
align-content: flex-start
}
align-content:flex-end:与交叉轴的终点对齐
.box {
display: flex;
flex-flow: row wrap;
align-content: flex-end
}
align-content:center :与交叉轴的中点对齐。
.box {
display: flex;
flex-flow: row wrap;
align-content: center
}
align-content:space-between:与交叉轴两端对齐,轴线之间的间隔平均分布
.box {
display: flex;
flex-flow: row wrap;
align-content: space-between;
}
align-content:space-around每根轴线两侧的间隔都相等。所以,轴线之间的间隔比轴线与边框的间隔大一倍。
.box {
display: flex;
flex-flow: row wrap;
align-content: space-around;
}