-
Flex布局
Flex是Flexible Box的缩写,意为"弹性布局",用来为盒状模型提供最大的灵活性。任何一个容器都可以指定为Flex布局。
.container{
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
}
-
基本概念
采用Flex布局的元素,称为Flex容器(flex container),简称"容器"。它的所有子元素自动成为容器成员,称为Flex项目(flex item),简称"项目"。
容器默认存在两根轴:水平的主轴(main axis)和垂直的交叉轴(cross axis)。主轴的开始位置(与边框的交叉点)叫做main start
,结束位置叫做main end
;交叉轴的开始位置叫做cross start
,结束位置叫做cross end
。
项目默认沿主轴排列。单个项目占据的主轴空间叫做main size
,占据的交叉轴空间叫做cross size
。
-
容器属性
-
flex-direction
flex-direction
属性决定主轴的方向(即项目的排列方向)。
flex-direction
有四个值row(默认值)
,row- reverse
,column
,column-reverse
。- row(默认值):主轴为水平方向,起点在左端。
- row-reverse:主轴为水平方向,起点在右端。
column:主轴为垂直方向,起点在上沿。
column-reverse:主轴为垂直方向,起点在下沿。-
flex-wrap
-
默认情况下,项目都排在一条线(又称"轴线")上。
flex-wrap
属性定义,如果一条轴线排不下,如何换行。
`flex-wrap`的值有3个:`nowrap(默认值)`,`wrap`,`wrap-reverse`。
- `nowrap`不换行
![nowrap.png](http://upload-images.jianshu.io/upload_images/1484568-cb37053f3645456e.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
- `wrap`换行,且第一行在上面
![wrap.png](http://upload-images.jianshu.io/upload_images/1484568-f02aa179581f8e3d.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
- `wrap-reverse`换行,且第一行在下面
![wrap-reverse.png](http://upload-images.jianshu.io/upload_images/1484568-e1a1ad0e68f559c9.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
-
flex-flow
flex-flow
属性是flex-direction
属性和flex-wrap
属性的简写形式,默认值为row nowrap
。
-
justify-content
justify-content
属性定义了项目在主轴上的对齐方式。
`justify-content`的值有5个:`flex-start(默认值)`,`flex-end`,`center`,`space-between`,`space-around`。
- `flex-start` 左对齐(默认)
- `flex-end` 右对齐
- `center` 居中对齐
![justify-content1.png](http://upload-images.jianshu.io/upload_images/1484568-256eebf50a03361f.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
- `space-between` 两端对齐,并且项目间距一致
- `space-around` 每个项目两侧的间隔相等。所以,项目之间的间隔比项目与边框的间隔大一倍。
![justify-content2.png](http://upload-images.jianshu.io/upload_images/1484568-be2f24c767cdf42a.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
-
align-items
align-items
属性定义项目在交叉轴上如何对齐。
`align-items`的值有5个:`flex-start`,`flex-end`,`center`,`stretch(默认值)`,`baseline`。
- `flex-start`:交叉轴的起点对齐。
![ai-flex-start.png](http://upload-images.jianshu.io/upload_images/1484568-c8931bb21a8fa5ab.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
- `flex-end`:交叉轴的钟点对齐。
![ai-flex-end.png](http://upload-images.jianshu.io/upload_images/1484568-9e3bd984b2d2151d.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
- `center`:交叉轴的中点对齐。
![ai-center.png](http://upload-images.jianshu.io/upload_images/1484568-7d3c6750cb17b0b1.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
- `stretch`:如果项目未设置高度或设为auto,将占满整个容器的高度,为默认值。
![ai-stretch.png](http://upload-images.jianshu.io/upload_images/1484568-1be4f5825743295e.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
- `baseline`:项目的**第一行**文字的基线对齐。
![ai-baseline.png](http://upload-images.jianshu.io/upload_images/1484568-c9ed06c6f589079f.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
-
align-content
align-content属性定义了多根轴线的对齐方式。如果项目只有一根轴线,该属性不起作用。
`align-content`的值有5个:`flex-start`,`flex-end`,`center`,`stretch(默认值)`,`space-between`,`space-around`。
- `flex-start`:与交叉轴的起点对齐。
- `flex-end`:与交叉轴的终点对齐。
-
center
:与交叉轴的中点对齐。-
stretch
:轴线占满整个交叉轴。-
space-between
:与交叉轴两端对齐,轴线之间的间隔平均分布。 -
space-around
:每根轴线两侧的间隔都相等。所以,轴线之间的间隔比轴线与边框的间隔大一倍。