----------------------------- 彈性佈局 ------------------------------------------------------
一、定義彈性佈局(父級上定義)
display:flex;
若是說內核爲webkit 的必須前面加上 -webkit-flexcss
-----------------------------------------------------------------------------------------------------
二、設置了彈性佈局以後,子元素的css中的float, clear, vertical-align 這些屬性將失效。html
--------------------------------------------------------------------------------------------------web
三、能夠將flex彈性佈局當作一個大盒子,也就是一個大容器,只要將它定義爲display:flex; 即它裏面全部的子元素均自動成爲容器的成員,專業術語稱之爲 項目佈局
--------------------------------------------------------------------------------------------------flex
四、默認狀況下,項目都是在容器裏面水平排列的,即按照主軸排列,且是順時針方向的。需(1,2,3)也就是x軸方向。(默認狀況都是flex-direction:row;)
<div class="box">
<div class="boxone">1</div>
<div class="boxtwo">2</div>
<div class="boxthree">3</div>
</div>spa
css樣式:3d
.box{
width: 500px;
height:400px;
background: pink;
display: flex;
}
.boxone{
width: 100px;
height:200px;
background: red;
}
.boxtwo{
width: 100px;
height:200px;
background: orange;
}
.boxthree{
width: 100px;
height:200px;
background: yellow;
}htm
效果圖:blog
--------------------------------------------------------------------------------------------------
五、若是是須要它反着排列(3,2,1)排列,此時就須要用到 flex-direction:row-reverse;(和咱們的所有float:right;是同樣的效果)three
.box{
width: 500px;
height:400px;
background: pink;
display: flex;
flex-direction:row-reverse;
}
--------------------------------------------------------------------------------------------------
六、除了按照主軸方向排列,還有按照y軸方向排列的。
加上flex-direction:column;
.box{
width: 500px;
height:400px;
background: pink;
display: flex;
flex-direction:column;
}
七、同理,y軸方向上倒序排列:flex-direction:column-reverse;
八、當咱們容器裏面的項目太多。這個時候咱們會發現。這些項目都擠到了一塊兒。項目自己的寬度根本就不起做用。以上的html代碼,咱們我加入幾個盒子上去。
九、怎樣才能讓這些盒子自己的寬度起到做用,一行排不到,可以自動的排第二排呢?這邊就須要用到彈性佈局中的換行。flex-wrap:wrap;
.box{
width: 500px;
height:400px;
background: pink;
display: flex;
flex-wrap:wrap;
}
flex-wrap:nowrap; (不換行)
flex-wrap:wrap;(換行)
flex-wrap:wrap-reverse;(倒序換行)
倒序換行效果:
十、上面的換行默認狀況是以x軸換行的,固然還有以y軸來換行的,也就是說,第一列排滿了以後,再排第二列。
此時就須要用到flex-flow:row nowrap;(默認狀況) flex-flow:column wrap;(y軸換行) flex-flow:column wrap-reverse;(倒序y軸換行)
y軸換行
.box{
width: 500px;
height:400px;
background: pink;
display: flex;
flex-flow:column wrap;
}
倒序y軸換行:
十一、那在css中的位置關係,水平方向的左中右,垂直方向的上中下 ,用彈性佈局怎麼實現呢?這裏就給你們介紹彈性佈局怎樣來實現的。首先看水平反向:
水平方向佈局
justify-content:flex-start; 水平左
justify-content:center; 中
justify-content:flex-end; 水平右
justify-content:space-around; 居中顯示,兩邊也空有間隙
justify-content:space-between; 兩邊不留空隙
依次看下效果:
justify-content:flex-start; 水平左 (默認的)
justify-content:center; 中
justify-content:flex-end; 水平右
justify-content:space-around; 居中顯示,兩邊也空有間隙(且是均等的)
justify-content:space-between; 兩邊不留空隙(平均排列的)
垂直方向佈局
align-items:flex-start; 上
align-items:center; 中 (比起css樣式,垂直反向居中flex彈性佈局是個不錯的優點)
align-items:flex-end; 下
這邊就演示一個垂直底部:
可是以上的垂直位置排版必須創建在一個前提條件下,即 單行 只有一行 。對於多行,即換行的,表現出來的樣子並非咱們須要看到的
以下:
<div class="box">
<div class="boxone">1</div>
<div class="boxtwo">2</div>
<div class="boxthree">3</div>
<div class="boxone">1</div>
<div class="boxtwo">2</div>
<div class="boxthree">3</div>
</div>
.box{
width: 500px;
height:800px;
background: pink;
display: flex;
flex-wrap:wrap;
align-content:center;
}
此時對於多行的,咱們用另一個屬性。即align-content:center; 其餘上 ,下 也是同樣的,若是是多行的話,即把items改爲content 便可 其餘幾個也是同樣的
十二、order屬性
定義項目的排雷順序,order的值越小,排列在越前面。 這個屬性是寫在須要換順序的子集上的,也就是項目上的。默認爲0;
<div class="box">
<div class="boxone">1</div>
<div class="boxtwo">2</div>
<div class="boxthree">3</div>
</div>
.box{
width: 500px;
height:600px;
background: pink;
display: flex;
flex-wrap:wrap;
align-items:center;
}
.boxone{
width: 100px;
height:200px;
background: red;
order:3;
}
.boxtwo{
width: 100px;
height:200px;
background: orange;
order:1;
}
.boxthree{
width: 100px;
height:200px;
background: yellow;
}