本人能力尚缺,經驗稍淺,翻譯中存在的不足之處望你們批評指正,以便及時更正。
郵箱:440981b05j0.cdb@sina.cn
Github:Duggudcss
文章描述的是CSS flexbox佈局綜合指南。該徹底指南解釋了有關flexbox的全部內容,重點介紹了父元素(flex容器)和子元素(flex項目)的全部可能的不一樣屬性。它還包括歷史記錄,演示,模式和瀏覽器支持圖表。html
Flexbox佈局(靈活盒子)模塊(截至2017年10月的W3C候選推薦標準)旨在提供一種更有效的方式來佈置,對齊和分配容器中項目之間的空間,即便它們的大小未知或是動態變化的( 這也是「flex」這個詞的由來)。css3
Flex佈局的主要思想是使容器可以改變其項目的寬度、高度以及順序,以最好地填充可用空間(主要是爲了適應全部類型的顯示設備和屏幕尺寸)。Flex容器擴展項目以填充可用空間,或縮小它們以防止溢出。git
最重要的是,與常規佈局(基於垂直的塊和基於水平的內聯塊)相反,flexbox佈局與方向無關。雖然前者適用於頁面,但它缺少靈活性來支持大型或複雜的應用程序(特別是在方向更改,調整大小,拉伸,縮小等方面)。github
注意:Flexbox佈局最適合應用程序的組件和小規模佈局,而Grid佈局則適用於更大規模的佈局。web
父的屬性(彈性容器) 瀏覽器
子的屬性(彈性項目)這定義了一個flex容器;內聯或塊取決於給定的值。它爲全部直接子項目提供了flex上下文。bash
<!--css-->
.container {
display: flex; /* or inline-flex */
}
複製代碼
注意: CSS列對flex容器沒有影響。app
<!--css-->
.container {
flex-direction: row | row-reverse | column | column-reverse;
}
複製代碼
<!--css-->
.container{
flex-wrap: nowrap | wrap | wrap-reverse;
}
複製代碼
更多可視化flex-wrap例程可訪問visual demos of flex-wrap hereide
這是一個簡寫的flex-direction和flex-wrap屬性,它們共同定義了flex容器的主軸(main-axis)和交叉軸(across-axis)。默認值爲 row nowrap。
<!--css-->
flex-flow: <‘flex-direction’> || <‘flex-wrap’>
複製代碼
<!--css-->
.item {
flex-grow: <number>; /* default 0 */
}
複製代碼
flex-grow設置爲負值時無效。
這定義了flex項在必要時收縮的能力。
<!--css-->
.item {
flex-shrink: <number>; /* default 1 */
}
複製代碼
flex-shrink設置爲負值時無效。
這定義了剩餘空間分佈以前元素的默認大小。它能夠是長度(例如20%,5rem等)或關鍵字。auto關鍵字的意思是「查看個人寬度或高度屬性」(這是由main-size關鍵字臨時完成的,直到棄用)。 content關鍵字的意思是「根據項目的內容調整大小」,這個關鍵字尚未獲得很好的支持,所以很難測試它,也很難知道它的兄弟屬性max-content、min-content和fit-content的功能。
<!--css-->
.item {
flex-basis: <length> | auto; /* default auto */
}
複製代碼
若是設置爲0,則不考慮內容周圍的額外空間。若是設置爲auto,則根據其彈性增加值分佈額外的空間。點擊查看示例圖表。
這是flex-grow、flex-shrink和flex-basis組合的簡寫。第二個和第三個參數(flex-shrink和flex-basis)是可選的。默認值是0 1 auto。
<!--css-->
.item {
flex: none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]
}
複製代碼
建議你使用這個簡寫屬性,而不是設置各個獨立屬性。簡寫能夠智能地設置其餘值。
<!--css-->
.container {
justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly;
}
複製代碼
這容許爲單個flex項目重置默認的對齊方式(或由align-items指定的對齊方式)。
請參閱align-items說明以瞭解可用的值。
<!--css-->
.item {
align-self: auto | flex-start | flex-end | center | baseline | stretch;
}
複製代碼
注意: float、clear和vertical-align對flex項沒有影響。
這定義了flex項在當前行的cross- axis軸(c垂直於main-axis軸)上佈局的默認行爲。能夠將其視爲justify-content做用於cross- axis軸的版本。
<!--css-->
.container {
align-items: stretch | flex-start | flex-end | center | baseline;
}
複製代碼
當cross-axis軸存在額外空間時,這會對flex項目沿cross-axis軸進行行對齊,相似於justify-content沿main-axis軸對flex項目進行對齊。
注意:當只有flex項目只有一行時,此屬性不起做用。
<!--css-->
.container {
align-content: flex-start | flex-end | center | space-between | space-around | stretch;
}
複製代碼
讓咱們以一個很是簡單的例子開始,解決一個幾乎天天都會遇到的問題:完美居中。若是您使用flexbox,它將變得不能更簡單。
<!--css-->
.parent {
display: flex;
height: 300px; /* Or whatever */
}
.child {
width: 100px; /* Or whatever */
height: 100px; /* Or whatever */
margin: auto; /* Magic! */
}
複製代碼
這取決於flex容器中設置爲「auto」的margin會吸取額外的空間。所以,設置垂直邊距爲auto將使項目完美地在兩個軸上居中排列。
如今讓咱們添加更多的屬性。考慮一個包含6個項目的列表,它們的尺寸都是固定的,可是能夠自動調整大小。咱們但願它們均勻地分佈在橫軸上,以便在調整瀏覽器大小時一切正常(不使用媒體查詢!)。
<!--css-->
.flex-container {
/* We first create a flex layout context */
display: flex;
/* Then we define the flow direction
and if we allow the items to wrap
* Remember this is the same as:
* flex-direction: row;
* flex-wrap: wrap;
*/
flex-flow: row wrap;
/* Then we define how is distributed the remaining space */
justify-content: space-around;
}
複製代碼
Done.其餘都只是一些樣式問題。下面是一個測試例程。請訪問CodePen,試着調整窗口大小,看看會發生什麼。
咱們試下別的例子。想象一下,咱們的網站頂部有一個靠右對齊的導航,但咱們但願它中型屏幕上居中,在小型設備上則呈現爲單列導航。這也足夠簡單。
<!--css-->
/* Large */
.navigation {
display: flex;
flex-flow: row wrap;
/* This aligns items to the end line on main-axis */
justify-content: flex-end;
}
/* Medium screens */
@media all and (max-width: 800px) {
.navigation {
/* When on medium sized screens, we center it by evenly distributing empty space around items */
justify-content: space-around;
}
}
/* Small screens */
@media all and (max-width: 500px) {
.navigation {
/* On small screens, we are no longer using row direction but column */
flex-direction: column;
}
}
複製代碼
讓咱們使用flex項目的靈活性來作更好的實現!好比移動優先的3列布局,具備全寬度的頁眉和頁腳。與源順序無關。
<!--css-->
.wrapper {
display: flex;
flex-flow: row wrap;
}
/* We tell all items to be 100% width, via flex-basis */
.wrapper > * {
flex: 1 100%;
}
/* We rely on source order for mobile-first approach
* in this case:
* 1. header
* 2. article
* 3. aside 1
* 4. aside 2
* 5. footer
*/
/* Medium screens */
@media all and (min-width: 600px) {
/* We tell both sidebars to share a row */
.aside { flex: 1 auto; }
}
/* Large screens */
@media all and (min-width: 800px) {
/* We invert order of first sidebar and main
* And tell the main element to take twice as much width as the other two sidebars
*/
.main { flex: 2 0px; }
.aside-1 { order: 1; }
.main { order: 2; }
.aside-2 { order: 3; }
.footer { order: 4; }
}
複製代碼
Flexbox須要一些供應商的前綴來支持儘量多的瀏覽器。它不只包括帶有供應商前綴的前置屬性,實際上還有徹底不一樣的屬性和值名稱。這是由於隨着時間的推移,Flexbox規範已經發生了變化,建立了"old", "tweener", and "new"版本。
或許處理這個問題的最好方法是使用新的(也是最終的)語法,並經過Autoprefixer運行CSS, Autoprefixer能夠很好地處理回退。
另外,這裏有一個Sass @mixin來幫助添加一些前綴,這也讓你知曉須要處理的事情:
<!--scss-->
@mixin flexbox() {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
}
@mixin flex($values) {
-webkit-box-flex: $values;
-moz-box-flex: $values;
-webkit-flex: $values;
-ms-flex: $values;
flex: $values;
}
@mixin order($val) {
-webkit-box-ordinal-group: $val;
-moz-box-ordinal-group: $val;
-ms-flex-order: $val;
-webkit-order: $val;
order: $val;
}
.wrapper {
@include flexbox();
}
.item {
@include flex(1 200px);
@include order(2);
}
複製代碼
Flexbox固然也有bugs。我見過的最好bugs收集是Philip Walton和Greg Whitworth的Flexbugs。它是開源的,你能夠跟蹤全部的數據,因此我認爲最好查看一下。
按「版本」劃分:
黑莓瀏覽器10+支持新語法。
更多有關如何混合使用語法以得到最佳瀏覽器支持的信息,可訪問CSS-Tricks和 DevOpera