1 flex-direction ,其決定主軸的方向(即項目的排列方向),默認為橫向排列。
? 1 2 3 .box { flex-direction: row | row-reverse | column | column-reverse; }2 flex-wrap屬性,排列換行
? 1 2 3 .box{ flex-wrap: nowrap | wrap | wrap-reverse; }3 flex-flow,其為flex-direction屬性和flex-wrap屬性的簡寫形式,默認值為row nowrap‘
’ ? 1 2 3 .box { flex-flow: <flex-direction> || <flex-wrap>; }</flex-wrap></flex-direction>4justify-content屬性,定義了項目在主軸上的對齊方式。
? 1 2 3 .box { justify-content: flex-start | flex-end | center | space-between | space-around; }5 align-items屬性,定義項目在交叉軸上如何對齊。
? 1 2 3 .box { align-items: flex-start | flex-end | center | baseline | stretch; }6align-content屬性,定義了多根軸線的對齊方式。如果項目只有一根軸線,該屬性不起作用
? 1 2 3 .box { align-content: flex-start | flex-end | center | space-between | space-around | stretch; }
項目屬性
1order屬性定義項目的排列順序。數值越小,排列越靠前,默認為0。
? 1 2 3 .item { order: <integer>; }</integer>2 flex-grow屬性,定義項目的放大比例,默認為0,即如果存在剩余空間,也不放大
? 1 2 3 .item { flex-grow: <number>; /* default 0 */ }</number>3 flex-shrink屬性,定義了項目的縮小比例,默認為1,即如果空間不足,該項目將縮小。
? 1 2 3 .item { flex-shrink: <number>; /* default 1 */ }</number> 如果所有項目的flex-shrink屬性都為1,當空間不足時,都將等比例縮小。如果一個項目的flex-shrink屬性為0,其他項目都為1,則空間不足時,前者不縮小。4 flex-basis屬性,定義了在分配多余空間之前,項目占據的主軸空間(main size)。浏覽器根據這個屬性,計算主軸是否有多余空間。它的默認值為auto,即項目的本來大小。
? 1 2 3 .item { flex-basis: <length> | auto; /* default auto */ }</length>5 flex屬性,是flex-grow,flex-shrink和flex-basis的簡寫,默認值為0 1 auto。後兩個屬性可選。
? 1 2 3 .item { flex: none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ] } 屬性有兩個快捷值:auto(1 1 auto) 和 none (0 0 auto)。6 align-self屬性
? 1 2 3 .item { align-self: auto | flex-start | flex-end | center | baseline | stretch; }
display:-webkit-box;(-webkit-內核浏覽器兼容)