1.基本概念,借用阮一峯老師的一張圖:css
容器默認存在兩根軸:水平的主軸(main axis)和垂直的交叉軸(cross axis)。主軸的開始位置(與邊框的交叉點)叫作main start
,結束位置叫作main end
;交叉軸的開始位置叫作cross start
,結束位置叫作cross end
。html
項目默認沿主軸排列。單個項目佔據的主軸空間叫作main size
,佔據的交叉軸空間叫作cross size
。html5
2.容器的基本屬性css3
flex-direction flex-wrap flex-flow justify-content align-items align-content
2.1 flex-direction 屬性決定主軸的方向 (及行排列)瀏覽器
.box{ flex-direction:row | row-reverse | column |column-reverse /*有四個值 分別的顯示效果*/ }
默認值:row
html5實現代碼: <div class="box"> <div class="box-item">1</div> <div class="box-item">2</div> <div class="box-item">3</div> <div class="box-item">4</div> </div>
css3部分實現代碼: body{ margin: 0 auto; width: 1000px; } .box{ background: gold; margin: 1px; display: flex; /*必須設置這個*/ flex-direction: row; /*一排的方式排列*/ } .box-item{ width: 100px; height: 100px; line-height: 100px; background: #ccc; color: white; text-align: center; margin: 5px; }
實現效果:flex
若是css3改爲 flex-direction: row-reverse;
其餘兩個屬性類推;spa
2.2 flex-wrap 定義若是一條軸線排不下,如何換行3d
.box{ flex-wrap:nowrap | wrap | wrap-reverse; } 默認:nowrap
html部分代碼:
<div class="box1">
<div class="box-item">1</div>
<div class="box-item">2</div>
<div class="box-item">3</div>
<div class="box-item">4</div>
<div class="box-item">1</div>
<div class="box-item">2</div>
<div class="box-item">3</div>
<div class="box-item">4</div>
<div class="box-item">1</div>
<div class="box-item">2</div>
<div class="box-item">3</div>
<div class="box-item">4</div>
</div>
css 部分代碼: .box1{ background: gold; margin: 1px; display: flex; flex-flow: wrap; } .box-item{ width: 100px; height: 100px; line-height: 100px; background: #ccc; color: white; text-align: center; margin: 5px; }
效果:code
這是換行的效果,其餘效果能夠嘗試;htm
2.3 flex-flow 是flex-direction 和 flex-wrap的縮寫;因此當獨寫上面的要寫兩個
默認值爲row norap
.box{ flex-flow: flex-direction || flex-wrap }
2.4 justify-content 屬性定義了項目在主軸上的對齊方式
.box{ justify-content:flex-start | flex-end | center | space-between | space-around; }
flex-start(默認值):左對齊
flex-end:右對齊
center: 居中
space-between:兩端對齊,項目之間的間隔都相等。
space-around:每一個項目兩側的間隔相等。因此,項目之間的間隔比項目與邊框的間隔大一倍。
試一種效果:
html5代碼:
<div class="box2"> <div class="box-item">1</div> <div class="box-item">2</div> <div class="box-item">3</div> <div class="box-item">4</div> <div class="box-item">1</div> <div class="box-item">2</div> <div class="box-item">3</div> <div class="box-item">4</div> </div>
css3代碼:
.box2{ background: gold; margin: 1px; display: flex; justify-content: center; /**能夠換換其餘的屬性值*/ } .box-item{ width: 100px; height: 100px; line-height: 100px; background: #ccc; color: white; text-align: center; margin: 5px; }
效果圖:
其餘的能夠本身試試:
flex-start(默認值):左對齊
flex-end:右對齊
center: 居中
space-between:兩端對齊,項目之間的間隔都相等。
space-around:每一個項目兩側的間隔相等。因此,項目之間的間隔比項目與邊框的間隔大一倍。
2.5 align-items 定義項目在交叉軸上如何對齊(縱軸)
.box{ align-items:flex-start | flex-end |center | baseline |stretch }
html5代碼: <div class="box3"> <div class="box-item">1</div> <div class="box-item item-tall">2</div> <div class="box-item">3</div> <div class="box-item">4</div> <div class="box-item">1</div> <div class="box-item item-tall">2</div> <div class="box-item">3</div> <div class="box-item">4</div> <div class="box-item">1</div> <div class="box-item item-tall">2</div> <div class="box-item">3</div> <div class="box-item">4</div> </div>
css3代碼: .box3{ background: gold; margin: 1px; display: flex; align-items:flex-end; /*能夠換其餘值看看*/ flex-wrap: wrap; } .box-item{ width: 100px; height: 100px; line-height: 100px; background: #ccc; color: white; text-align: center; margin: 5px; } .item-tall{ height: 200px; /*交叉軸,高度不一*/ line-height: 200px; }
效果:
其餘的能夠本身試試:
flex-start:交叉軸的起點對齊。
flex-end:交叉軸的終點對齊。
center:交叉軸的中點對齊。
baseline: 項目的第一行文字的基線對齊。
stretch(默認值):若是項目未設置高度或設爲auto,將佔滿整個容器的高度。
2.6 align-content 屬性定義了多根軸線(多行)的對齊方式,若是項目只有一根軸線,該屬性起不來做用
.box { align-content: flex-start | flex-end | center | space-between | space-around | stretch; }
html代碼: <div class="box3 box3-tall"> <div class="box-item">1</div> <div class="box-item">2</div> <div class="box-item">3</div> <div class="box-item">4</div> <div class="box-item">1</div> <div class="box-item">2</div> <div class="box-item">3</div> <div class="box-item">4</div> <div class="box-item">1</div> <div class="box-item">2</div> <div class="box-item">3</div> <div class="box-item">4</div> </div>
css代碼: .box3{ background: gold; margin: 1px; display: flex; flex-wrap: wrap; align-content: space-around; } .box-tall { height: 300px; } .box-item{ width: 100px; height: 100px; line-height: 100px; background: #ccc; color: white; text-align: center; margin: 5px; }
效果:
其餘的能夠本身試試:
flex-start:與交叉軸的起點對齊。
flex-end:與交叉軸的終點對齊。
center:與交叉軸的中點對齊。
space-between:與交叉軸兩端對齊,軸線之間的間隔平均分佈。
space-around:每根軸線兩側的間隔都相等。因此,軸線之間的間隔比軸線與邊框的間隔大一倍。
stretch(默認值):軸線佔滿整個交叉軸。
3.容器裏子元素的屬性
order屬性定義項目的排列順序。數值越小,排列越靠前,默認爲0。 flex-grow屬性定義項目的放大比例,默認爲0,即若是存在剩餘空間,也不放大。 flex-shrink屬性定義了項目的縮小比例,默認爲1,即若是空間不足,該項目將縮小。 flex-basis屬性定義了在分配多餘空間以前,項目佔據的主軸空間(main size)。瀏覽器根據這個屬性,計算主軸是否有多餘空間。它的默認值爲auto,即項目的原本大小。
屬性容許單個項目有與其餘項目不同的對齊方式,可覆蓋屬性。默認值爲,表示繼承父元素的屬性,若是沒有父元素,則等同於
align-selfalign-itemsautoalign-itemsstretch
一般咱們定義flex:1;
表示的就是這三個;
3.1 order 屬性
html代碼: <div class="box4"> <div class="box-item1 ">1</div> <div class="box-item1 order">2</div> /*注意是第二個元素有Order類*/ </div>
css代碼: .box4{ background: gold; margin: 1px; display: flex; } .box-item1{ flex: 1; line-height: 100px; background: #ccc; color: white; text-align: center; margin: 5px; } .order{ background: blue; order: -1; }
效果圖:
若是我這樣設置:
.order{ background: blue; order: -1; flex-grow:2; /*多了這個*/ }
其餘的去試一試,大概就是這樣