最近在學(xué)習(xí)微信小程序,在設(shè)計(jì)首頁(yè)布局的時(shí)候,新認(rèn)識(shí)了一種布局方式display:flex 1 .container { 2 display: flex; 3 flex-direction: column; 4 align-items: center; 5 background-color: #b3d4db; 6 } 編譯之后的效果很明顯,界面的布局也很合理,看起來(lái)很清晰。那么究竟這個(gè)屬性是干嘛用的呢? Flex是Flexible Box的縮寫(xiě),意為"彈性布局",用來(lái)為盒狀模型提供最大的靈活性。設(shè)為Flex布局以后,子元素的 它即可以應(yīng)用于容器中,也可以應(yīng)用于行內(nèi)元素。(以上說(shuō)明結(jié)合微信開(kāi)發(fā)者工具說(shuō)明)2009年,W3C提出了一種新的方案----Flex布局,可以簡(jiǎn)便、完整、響應(yīng)式地實(shí)現(xiàn)各種頁(yè)面布局。目前,它已經(jīng)得到了所有瀏覽器的支持,這意味著,現(xiàn)在就能很安全地使用這項(xiàng)功能。
基本概念
采用Flex布局的元素,稱為Flex容器(flex container),簡(jiǎn)稱"容器"。它的所有子元素自動(dòng)成為容器成員,稱為Flex項(xiàng)目(flex item),簡(jiǎn)稱"項(xiàng)目"。容器默認(rèn)存在兩根軸:水平的主軸(main axis)和垂直的交叉軸(cross axis)。主軸的開(kāi)始位置(與邊框的交叉點(diǎn))叫做
以下6個(gè)屬性設(shè)置在容器上:
flex-direction 1 .box { 2 flex-direction: row | row-reverse | column | column-reverse; 3 } 屬性可選值的范圍為row(默認(rèn))沿水平主軸由左向右排列、row-reverse沿水平主軸由右向左排列、column沿垂直主軸右上到下和column-reverse。
flex-wrap 1 .box{ 2 flex-wrap: nowrap | wrap | wrap-reverse; 3 } 屬性可選值的范圍為nowrap(默認(rèn))不換行、wrap換行(第一行在上方)和wrap-reverse(你懂的~)
flex-flow 1 .box { 2 flex-flow: <flex-direction> || <flex-wrap>; 3 } 寫(xiě)法屬性中,將上述兩種方法的值用||連接即可
justify-content 1 .box { 2 justify-content: flex-start | flex-end | center | space-between | space-around; 3 } 項(xiàng)目在主軸上的對(duì)齊方式(主軸究竟是哪個(gè)軸要看屬性flex-direction的設(shè)置了) flex-start:在主軸上由左或者上開(kāi)始排列 flex-end:在主軸上由右或者下開(kāi)始排列 center:在主軸上居中排列 space-between:在主軸上左右兩端或者上下兩端開(kāi)始排列 space-around:每個(gè)項(xiàng)目?jī)蓚?cè)的間隔相等。所以,項(xiàng)目之間的間隔比項(xiàng)目與邊框的間隔大一倍。
align-items1 .box { 2 align-items: flex-start | flex-end | center | baseline | stretch; 3 } 這里面直接上圖片說(shuō)明的更清楚一些 align-content1 .box { 2 align-content: flex-start | flex-end | center | space-between | space-around | stretch; 3 } 以上介紹完了容器中的屬性,下面說(shuō)一下容器中項(xiàng)目的屬性:
order1 .item { 2 order: <integer>; 3 } flex-grow1 .item { 2 flex-grow: <number>; /* default 0 */ 3 } flex-shrink1 .item { 2 flex-shrink: <number>; /* default 1 */ 3 } flex-basis1 .item { 2 flex-basis: <length> | auto; /* default auto */ 3 } flex1 .item { 2 flex: none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ] 3 } align-self1 .item { 2 align-self: auto | flex-start | flex-end | center | baseline | stretch; 3 }
容器屬性和項(xiàng)目屬性是可以配合使用的,用法類(lèi)似于CSS的行內(nèi)式和嵌入式的道理一樣。希望你可以在實(shí)際應(yīng)用中熟練使用。
以上文章主要摘自阮一峰的《阮一峰的網(wǎng)絡(luò)日志》,鏈接:http://www./blog/2015/07/flex-grammar.html?utm_source=tuicool
|
|