flex容器的属性
flex-direction: row | row-reverse | column | column-reverse;
flex-direction: row;
1width: 110px;
height:86px;
2width: 110px;
height:86px;
3width: 110px;
height:86px;
flex-direction: row-reverse;
1width: 110px;
height:86px;
2width: 110px;
height:86px;
3width: 110px;
height:86px;
flex-direction: column;
1width: 110px;
height:86px;
2width: 110px;
height:86px;
3width: 110px;
height:86px;
flex-direction: column-reverse;
1width: 110px;
height:86px;
2width: 110px;
height:86px;
3width: 110px;
height:86px;
flex-wrap: nowrap | wrap | wrap-reverse;
flex-wrap: nowrap;
1width: 110px;
height:86px;
2width: 110px;
height:86px;
3width: 110px;
height:86px;
4width: 110px;
height:86px;
5width: 110px;
height:86px;
6width: 110px;
height:86px;
7width: 110px;
height:86px;
8width: 110px;
height:86px;
flex-wrap: wrap;
1width: 110px;
height:86px;
2width: 110px;
height:86px;
3width: 110px;
height:86px;
4width: 110px;
height:86px;
5width: 110px;
height:86px;
6width: 110px;
height:86px;
7width: 110px;
height:86px;
8width: 110px;
height:86px;
flex-wrap: wrap-reverse;
1width: 110px;
height:86px;
2width: 110px;
height:86px;
3width: 110px;
height:86px;
4width: 110px;
height:86px;
5width: 110px;
height:86px;
6width: 110px;
height:86px;
7width: 110px;
height:86px;
8width: 110px;
height:86px;
flex-flow: row-reverse;
flex-flow: row-reverse;
1width: 110px;
height:86px;
2width: 110px;
height:86px;
3width: 110px;
height:86px;
4width: 110px;
height:86px;
5width: 110px;
height:86px;
6width: 110px;
height:86px;
7width: 110px;
height:86px;
8width: 110px;
height:86px;
justify-content: flex-start | flex-end | center | space-between | space-around;
justify-content: flex-start;
1width: 110px;
height:86px;
2width: 110px;
height:86px;
3width: 110px;
height:86px;
justify-content: flex-end;
1width: 110px;
height:86px;
2width: 110px;
height:86px;
3width: 110px;
height:86px;
justify-content: center;
1width: 110px;
height:86px;
2width: 110px;
height:86px;
3width: 110px;
height:86px;
justify-content: space-between;
1width: 110px;
height:86px;
2width: 110px;
height:86px;
3width: 110px;
height:86px;
justify-content: space-around;
1width: 110px;
height:86px;
2width: 110px;
height:86px;
3width: 110px;
height:86px;
align-items: stretch | flex-start | flex-end | center | baseline;
align-items: stretch; 默认值,如果项目未设置高度或设为auto,将占满整个容器的高度。
1width: 110px;
height:86px;
2width: 110px;
height:126px;
3width: 110px;
height:66px;
3width: 110px;
height:unset;
3width: 110px;
height:auto;
align-items: flex-start;
1width: 110px;
height:86px;
2width: 110px;
height:126px;
3width: 110px;
height:66px;
align-items: flex-end;
1width: 110px;
height:86px;
2width: 110px;
height:126px;
3width: 110px;
height:66px;
align-items: center;
1width: 110px;
height:86px;
2width: 110px;
height:126px;
3width: 110px;
height:66px;
align-items: baseline;
1width: 110px;
height:86px;
2width: 110px;
height:126px;
3width: 110px;
height:66px;
flex项的属性
order: 数字;
定义项目的排列顺序。数值越小,排列越靠前,默认为0。
1width: 110px;
height:86px;
order:4;
2width: 110px;
height:86px;
order:1;
3width: 110px;
height:86px;
order:-5;
4width: 110px;
height:86px;
order:3;
1width: 110px;
height:86px;
order:4;
2width: 110px;
height:86px;
order:1;
3width: 110px;
height:86px;
order:-5;
4width: 110px;
height:86px;
order:3;
flex-grow: 数字;
定义项目的放大比例,默认为0,即如果存在剩余空间,也不放大。
如果所有项的flex-grow属性都为1,则它们将等分剩余空间。
如果一个项的flex-grow属性为2,其他项目都为1,不是说它宽度是其他项一倍, 而是它占用的剩余空间宽度是其他项的一倍。
下面的例子中,容器宽度660px,每一项的宽度110px,设置flex-grow分别是1-2-1,那么结果是这样的:
剩余空间宽度330px
Div1宽度为110+330x1/(1+2+1)=192.5
Div2宽度为110+330x2/(1+2+1)=275
Div3宽度为110+330x1/(1+2+1)=192.5
1width: 110px;
实际width: 192.5px
flex-grow:1;
2width: 110px;
实际width: 275px
flex-grow:2;
3width: 110px;
实际width: 192.5px
flex-grow:1;
flex-shrink: 数字;
定义了项目的缩小比例,默认为1,即如果空间不足,该项目将缩小。
如果所有项的flex-shrink属性都为1,当空间不足时,都将等比例缩小。
如果一个项的flex-shrink属性为0,其他项都为1,则空间不足时,前者不缩小。
不支持负数值。
1width: 250px;
实际width: 182px
flex-shrink:1;
2width: 250px;
实际width: 114px
flex-shrink:2;
3width: 250px;
实际width: 182px
flex-shrink:1;
4width: 250px;
实际width: 182px
flex-shrink:1;
1width: 250px;
实际width: 250px(不缩小)
flex-shrink:0;
2width: 250px;
实际width: 190px
flex-shrink:2;
3width: 250px;
实际width: 220px
flex-shrink:1;
flex-basis: length | auto;
定义了在分配多余空间之前,项占据的主轴空间(main size)。浏览器根据这个属性,计算主轴是否有多余空间。它的默认值为auto,即项的本来大小。
它可以设为跟width或height属性一样的值(比如350px),则项目将占据固定空间。
下面的例子中,容器宽度660px,每一项的宽度110px,设置flex-grow分别是1-2-1,那么结果是这样的:
Div1的flex-basis为80px,Div3的flex-basis为110px,则剩余空间宽度360px
Div1宽度为80+360x1/(1+2+1)=170
Div2宽度为110+360x2/(1+2+1)=290
Div3宽度为110+360x1/(1+2+1)=200
1width: 110px;
flex-basis: 80px
实际width:
170px
flex-grow:1;
2width: 110px;
flex-basis: unset
实际width:
290px
flex-grow:2;
3width: 110px;
flex-basis: 110px;
实际width:
200px
flex-grow:1;
不使用flex-grow的话,它会覆盖本来的大小。
1width: 110px;
flex-basis: 90px;
实际width:
90px
2width: 110px;
flex-basis: 130px;
实际width:
130px
3width: 110px;
flex-basis: 150px;
实际width:
150px
flex: none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ];
该属性有两个快捷值:auto (1 1 auto) 和 none (0 0 auto)。
建议优先使用这个属性,而不是单独写三个分离的属性,因为浏览器会推算相关值。
align-self: auto | flex-start | flex-end | center | baseline | stretch;
align-self属性允许单个项目有与其他项目不一样的对齐方式,可覆盖align-items属性。默认值为auto,表示继承父元素的align-items属性,如果没有父元素,则等同于stretch。
该属性可能取6个值,除了auto,其他都与align-items属性完全一致。