1、几个名词:容器(container)、项目(item)、主轴(main axis)、交叉轴(cross axis)、主轴空间(main size)、交叉轴空间(cross size)
2、设置flex后子元素会失效的属性:float、clear、vertical-align
3、容器属性(6个)
(1)flex-direction:决定主轴的方向(即项目的排列方向)
flex-direction: row | row-reverse | column | column-reverse;
(2)flex-wrap:决定一条轴线排列不下时,如何换行
flex-wrap: nowrap | wrap | wrap-reverse;
(3)flex-flow:是flex-direction和flex-wrap的简写形式
flex-flow: <flex-direction> || <flex-wrap>;
(4)justify-content:定义项目在主轴上的对齐方式
justify-content: flex-start | flex-end | center | space-between | space-around
(5)align-items:定义项目在交叉轴上的对齐方式
align-items: flex-start | flex-end | center | baseline | stretch
(6)align-content:定义多根轴线时的对齐方式
align-content: flex-start | flex-end | center | space-between | space-around | stretch;
4、项目属性(6个)
(1)order:定义项目的排列顺序
order: <integer>;
(2)flex-grow:定义项目的放大比例,默认为0,即如果存在剩余空间也不放大
flex-grow: <number>; /* default 0 */
(3)flex-shrink:定义项目的缩小比例,默认为1,即空间不足该项目缩小
flex-shrink: <number>; /* default 1 */
(4)flex-basis:定义了在分配多余空间之前,项目占据的主轴空间(main size)。浏览器根据这个属性,计算主轴是否有多余空间。它的默认值为auto,即项目的本来大小。
flex-basis: <length> | auto; /* default auto */
(5)flex:flex-grow, flex-shrink 和 flex-basis的简写,默认值为0 1 auto。后两个属性可选。该属性有两个快捷值:auto (1 1 auto) 和 none (0 0 auto)。
flex: none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]
(6)align-self:允许单个项目有与其他项目不一样的对齐方式,可覆盖align-items属性。默认值为auto,表示继承父元素的align-items属性,如果没有父元素,则等同于stretch。
align-self: auto | flex-start | flex-end | center | baseline | stretch;
网友评论