Overview of the latest version of flexible box layout in CSS 3
In CSS 3, the CSS Flexible Box module is a very important module, which is used to Flexible way to implement page layout processing.
Although other CSS style attributes can be used to implement page layout processing, if you use the flexible box layout technology defined in the CSS Flexible Box module, you can automatically adjust each local area of the page according to the screen size or browser window size. The display mode realizes very flexible layout processing.
Although the CSS Flexible Box module has been announced for several years, the content defined in the module has undergone several major revisions since its initial release. The official version currently announced is CSS Flexible Box Layout Module - W3C Candidate Recommendation, 18 September 2012.
So far, Opera 12.10 and above, IE 11 and above, Chrome 21 and above, and Firefox 22 and above all support this latest version.
Start learning the latest version of flexbox layout from a sample page
Next, start learning the latest version of flexbox layout from a sample page. The code in the body element in this example page is as follows.
<body><div id="main"> <div class="content"> <section> <h1>section 1</h1> <p>示例文字</p> </section> <section> <h1>section 2</h1> <p>示例文字</p> </section> <section> <h1>section 3</h1> <p>示例文字</p> </section> <section> <h1>section 4</h1> <p>示例文字</p> </section> </div> <div class="content"> <section> <h1>section 5</h1> <p>示例文字</p> <section> <h1>section 6</h1> <p>示例文字</p> </section> <section> <h1>section 7</h1> <p>示例文字</p> </section> <section> <h1>section 8</h1> <p>示例文字</p> </section> </div> <div class="content"> <section> <h1>section 9</h1> <p>示例文字</p> </section> <section> <h1>section 10</h1> <p>示例文字</p> </section> <section> <h1>section 11</h1> <p>示例文字</p> </section> <section> <h1>section 12</h1> <p>示例文字</p> </section> </div></div></body>
Next, first specify the border style for each div element and section element in the page. The code is as follows.
<style>#main { border: 1px dotted #f0f; padding: 1em;}.content { border: 1px dotted #0ff; padding: 1em;}section { border: 1px dotted #f00; padding: 1em;}</style>
Open the sample page so far in the browser. The elements on the page are arranged vertically from top to bottom, as shown in the figure below.
Using flexible box layout on the sample page
The method of specifying flexible box layout is: for the elements that need to be laid out The container element uses the display:flex; style attribute. In the CSS Flexible Box module, each element in the container element is called a "Flex item", and the container element is called a "Flex container".
One of the main differences between the flexible box layout method and the layout method using float and other style attributes is that when using float and other style attributes, you need to specify style attributes for each element in the container. When using the flexible box layout , you only need to specify style attributes on the container element.
Next, we first use flexible box layout for all div elements with the style class name content. The container elements of these div elements are div elements with the id attribute value as main. Modify the style code of this element as follows Display:
#main { border: 1px dotted #f0f; padding: 1em; display: flex;}
Open the sample page in the browser, and the arrangement of all div elements with the style class name content in the page is modified to horizontal arrangement, as shown in the figure below.
Set the arrangement direction of elements
All child elements in the container can be controlled by using the flex-direction style attribute For the arrangement direction, the values that can be specified are as follows.
row: horizontal arrangement (default value)
row-reverse: horizontal reverse arrangement
column: vertical arrangement
column-reverse: vertically reverse arrangement
Modify the style code of the div element whose id attribute value is main as follows:
#main { border: 1px dotted #f0f; padding: 1em; display: flex; flex-direction: row-reverse;}
Open the sample page in the browser. The arrangement of all div elements with the style class name content on the page is modified to be arranged horizontally and in reverse starting from the right end of the container element, that is, the div element with the id attribute value of main, as shown in the figure below. Show.
Next, first restore the arrangement of all div elements with the style class name content to horizontal and forward arrangement, and modify the div element whose id attribute value is main. The style code is as follows:
#main { border: 1px dotted #f0f; padding: 1em; display: flex;}
Then specify the flex-direction: column-reverse; style attribute for all div elements with the style class name content. The code is as follows:
.content { border: 1px dotted #0ff; padding: 1em; display: flex; flex-direction: column-reverse;}
Open the sample page in the browser. The arrangement of all section sub-elements of all content div elements in the page is modified to vertical reverse arrangement (excluding the section in the section sub-element) Sun element), as shown in the figure below.
Use the order style attribute to specify the sorting order
When using flexible box layout, you can change the order of each element through the order attribute Display order. You can add the order attribute to the style of each element. This attribute uses an integer attribute value that represents the serial number. When displaying, the browser displays these elements based on the serial number from small to large.
Next, first set the arrangement of all section sub-elements of all div elements with the style class name of content to vertical and forward arrangement. Modify the style code of all div elements with the style class name of content as follows:
.content { border: 1px dotted #0ff; padding: 1em; display: flex; flex-direction: column;}
Next, change the order style attribute value of the second section sub-element in the div element with the style class name of content. The method set to -1 sets these section sub-elements to be displayed first before other section sub-elements. The code is as follows:
.content section:nth-child(2) { order: -1;}
Open the sample page in the browser, page The second section sub-element in all div elements with the style class name content is displayed before other section sub-elements, as shown in the figure below.
设置元素宽度及高度
接下来首先介绍如何设置被横向排列的每一个元素的宽度。
可以通过flex属性值的使用使所有子元素的总宽度等于容器宽度。
接下来通过将所有样式类名为content的div元素的flex属性值设置为1的方法使所有样式类名为content的div元素的总宽度等于容器元素,即id属性值为main的div元素的宽度,代码如下所示。当所有样式类名为content的div元素的flex属性值都被设置为1时,这些div元素的宽度均等。
.content { border: 1px dotted #0ff; padding: 1em; display: flex; flex-direction: column; flex:1;}
在浏览器中打开示例页面,所有样式类名为content的div元素的宽度自动增长,这些元素的总宽度等于容器元素,即id属性值为main的div元素的宽度,每一个样式类名为content的div元素的宽度均等,如下图所示。
接下来,我们设置第二个样式类名为content的div元素的flex属性值为2,代码如下所示。
.content:nth-child(2) { flex:2;}
为了更清晰地计算元素宽度,我们取消所有元素的边框设置及内边距设置,修改后的完整样式代码如下所示。
<style>#main { display: flex;}.content { display: flex; flex-direction: column; flex:1;}.content section:nth-child(2) { order: -1;}.content:nth-child(2) { flex:2;}</style>
在浏览器中打开示例页面,第二个样式类名为content的div元素宽度为其他样式类名为content的div元素宽度的两倍,假设这些元素的容器元素,即id属性值为main的div元素的宽度等于600px,则第一个与第三个样式类名为content的div元素宽度的宽度均等于150px,第二个样式类名为content的div元素宽度的宽度等于300px。
可以使用flex-grow属性来指定元素宽度,但是该样式属性对于元素宽度的计算方法与flex样式属性对于元素宽度的计算方法有所不同。
接下来指定所有样式类名为content的div元素的flex-grow样式属性值为1,宽度为150px,指定第二个样式类名为content的div元素的flex-grow样式属性值为为3。修改后的完整样式代码如下所示。
<style>#main { display: flex;}.content { display: flex; flex-direction: column; width:150px; flex-grow:1;}.content section:nth-child(2) { order: -1;}.content:nth-child(2) { flex-grow:3;}</style>
在浏览器中打开示例页面,假设这些元素的容器元素,即id属性值为main的div元素的宽度等于600,则第一个与第三个样式类名为content的div元素宽度的宽度均等于180px,第二个样式类名为content的div元素宽度的宽度等于240px。对于每个样式类名为content的div元素宽度的计算步骤如下所示:
600(容器宽度)-150*3(三个样式类名为content的div元素宽度的总宽度)=150
150/5(三个样式类名为content的div元素宽度的flex-grow样式属性值的总和)=30
第一个与第三个样式类名为content的div元素宽度的宽度均等于150(其width样式属性值+)+30*1(其flew-grow样式属性值)=180px
第二个样式类名为content的div元素宽度的宽度等于150(其width样式属性值+)+30*3(其flew-grow样式属性值)=240px
可以使用flex-shrink属性来指定元素宽度,该样式属性与flex-grow样式属性的区别在于:当子元素的width样式属性值的总和小于容器元素的宽度值时,必须通过flex-grow样式属性来调整子元素宽度,当子元素的width样式属性值的总和大于容器元素的宽度值时,必须通过flex-shrink样式属性来调整子元素宽度。
接下来指定所有样式类名为content的div元素的flex-shrink样式属性值为1,宽度为250px,指定第二个样式类名为content的div元素的flex-shrink样式属性值为为3。修改后的完整样式代码如下所示。
<style>#main { display: flex;}.content { display: flex; flex-direction: column; width:250px; flex-shrink:1;}.content section:nth-child(2) { order: -1;}.content:nth-child(2) { flex-shrink:3;}</style>
在浏览器中打开示例页面,假设这些元素的容器元素,即id属性值为main的div元素的宽度等于600,则第一个与第三个样式类名为content的div元素宽度的宽度均等于220px,第二个样式类名为content的div元素宽度的宽度等于160px。对于每个样式类名为content的div元素宽度的计算步骤如下所示:
250*3(三个样式类名为content的div元素宽度的总宽度)-600(容器宽度)=150
150/5(三个样式类名为content的div元素宽度的flex-shrink样式属性值的总和)=30
第一个与第三个样式类名为content的div元素宽度的宽度均等于250(其width样式属性值+)-30*1(其flew-shrink样式属性值)=220px
第二个样式类名为content的div元素宽度的宽度等于250(其width样式属性值+)-30*3(其flew-grow样式属性值)=160px
在使用flex-grow样式属性或flex-shrink样式属性调整子元素宽度时,也可以使用flex-basis样式属性指定调整前的子元素宽度,该样式属性与width样式属性的作用完全相同。
可以将flex-grow、flex-shrink以及flex-basis样式属性值合并写入flex样式属性中,方法如下所示。
flex:flex-grow样式属性值 flex-shrink样式属性值 flex-basis样式属性值;
复制代码
在使用flex样式属性值时,flex-grow、flex-shrink以及flex-basis样式属性值均为可选用样式属性值,当不指定flex-grow、flex-shrink样式属性值时,默认样式属性值均为1,当不指定flex-basis样式属性值时,默认样式属性值为0px。
修改本示例中的样式代码如下所示:
<style>#main { display: flex;}.content { display: flex; flex-direction: column; width:250px; flex:250px;}.content section:nth-child(2) { order: -1;}.content:nth-child(2) { flex:1 3 250px;}</style>
在浏览器中打开示例页面,假设这些元素的容器元素,即id属性值为main的div元素的宽度等于600,则第一个与第三个样式类名为content的div元素宽度的宽度均等于220px,第二个样式类名为content的div元素宽度的宽度等于160px。
在子元素为横向排列时,flex、flex-grow、flex-shrink以及flex-basis样式属性均用于指定或调整子元素宽度,当子元素为纵向排列时,flex、flex-grow、flex-shrink以及flex-basis样式属性均用于指定或调整子元素高度。
单行布局与多行布局
可以使用flex-wrap样式属性来指定单行布局或多行布局,可指定样式属性值如下所示:
nowrap:不换行
wrap:换行
wrap-reverse:虽然换行,但是换行方向与使用wrap样式属性值时的换行方向相反
接下来首先恢复页面内各div元素的边框与内边距(padding)的指定,同时指定所有样式类名为content的div元素的宽度为250px,代码如下所示。
<style>#main { border: 1px dotted #f0f; padding: 1em; display: flex;}.content { border: 1px dotted #0ff; padding: 1em; display: flex; flex-direction: column; flex:250px;}section { border: 1px dotted #f00; padding: 1em;}.content section:nth-child(2) { order: -1;}</style>
然后指定容器元素,即id属性值为main的div元素的flex-wrap样式属性值为wrap,以指定允许对所有样式类名为content的div元素进行换行布局,代码如下所示。
#main { border: 1px dotted #f0f; padding: 1em; display: flex; flex-wrap: wrap;}
在浏览器中打开示例页面,当浏览器窗口宽度不足以容纳三个样式类名为content的div元素时,最右边的样式类名为content的div元素被换行显示,如下图所示。
可以将flex-direction样式属性值与flex-wrap样式属性值合并书写在flex-flow样式属性中。以下两段代码的作用完全相同。
//使用flex-direction样式属性与flex-wrap样式属性.content { flex-direction: row; flex-wrap: wrap;}//使用flex-flow样式属性.content { flex-flow: row wrap;}
弹性盒布局中的一些专用术语
接下来首先介绍弹性盒布局中的一些专用术语,在进行布局时这些术语的含义如下图所示。
main axis:进行布局时作为布局基准的轴,在横向布局时为水平轴,在纵向布局时为垂直轴。
main-start / main-end:进行布局时的布局起点与布局终点。在横向布局时为容器的左端与右端,在纵向布局时为容器的顶端与底端。
cross axis:与main axis垂直相交的轴,在横向布局时为垂直轴,在纵向布局时为水平轴。
cross-start / cross-end:cross axis轴的起点与终点。在横向布局时为容器的顶端与底端,在纵向布局时为容器的左端与右端。将flex-wrap属性值指定为wrap且进行横向多行布局时,按从cross-start到cross-end方向,即从上往下布局,将flex-wrap属性值指定为wrap-reverse且进行横向多行布局时,按从cross-end到cross-start方向,即从下往上布局。
justify-content属性
justify-content属性用于指定如何布局容器中除了子元素之外的main axis轴方向(横向布局时main axis轴方向为水平方向,纵向布局时main axis轴方向为垂直方向)上的剩余空白部分。
当flex-grow属性值不为0时,各子元素在main axis轴方向上自动填满容器,所以justify-content属性值无效。
可指定justify-content属性值如下所示:
flex-start:从main-start开始布局所有子元素(默认值)。
flex-end:从main-end开始布局所有子元素。
center:居中布局所有子元素。
space-between:将第一个子元素布局在main-start处,将最后一个子元素布局在main-end处,将空白部分平均分配在所有子元素与子元素之间。
space-around:将空白部分平均分配在以下几处:main-start与第一个子元素之间、各子元素与子元素之间、最后一个子元素与main-end之间。
The difference between the above attribute values is as shown in the figure below (gray represents the blank part).
The align-items attribute is similar to the align-self attribute
The align-items attribute is similar to the justify-content attribute. Used to specify the alignment of child elements, but the align-items attribute specifies the alignment in the cross axis direction (the cross axis direction is the vertical direction in horizontal layout, and the cross axis direction is horizontal in vertical layout). You can Specify attribute values as shown below.
flex-start: layout all child elements starting from cross-start (default value).
flex-end: layout all child elements starting from cross-end.
center: Center all child elements.
baseline: If the layout direction of the child element is inconsistent with the layout direction of the container, the effect of this value is equivalent to the effect of the flex-start attribute value. If the layout direction of the child elements is consistent with the layout direction of the container, the content in all child elements is aligned along the baseline.
stretch: The height of all child elements in the same row is adjusted to the maximum. If no child element height is specified, the height of all child elements is adjusted to be closest to the container height (when the element border and padding are taken into account, when the border width and padding are both 0, they are equal to the container height).
The difference between the above attribute values is as shown in the figure below (gray represents the blank area).
The difference between the align-self attribute and the align-items attribute is that align-items is specified as the style attribute of the container element and is used to specify the style of all child elements. Alignment, and the align-self attribute is specified as a style attribute of certain sub-elements to specify the alignment of these sub-elements individually. For example, after specifying the align-items attribute value of the container element as center (center alignment), you can specify the align-self attribute value of the first child element as flex-start (aligning at the cross-start end). The values that can be specified are as follows:
auto: Inherit the align-items attribute value of the parent element
flex-start
flex-end
center
baseline
stretch
align-content attribute
When performing multi-line layout, you can use the align-content attribute to specify the alignment of each line. The difference between this attribute and the align-items attribute is that the align-items attribute is used to specify the alignment of child elements, while the align-content attribute is used to specify the row alignment. The attribute values that can be specified are as follows:
flex-start: Lay out all rows starting from cross-start.
flex-end: layout all rows starting from cross-end.
center: Center all rows.
space-between: Lay out the first line at cross-start, layout the last line at cross-end, and distribute the blank parts evenly between the lines.
space-around: Distribute the white space evenly in the following places: between cross-start and the first line, between each line, and between the last line and cross-end.
The difference between the above attribute values is shown in the figure below (gray represents the blank part).