CSS3 弹性盒子


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>CSS3 弹性盒子</title>
    <style>
        /*CSS3 弹性盒子 简单示例*/
        div.flex-container_a{
            display: -webkit-flex;
            display: flex;
            width: 400px;
            height: 250px;
            background-color: lightsteelblue;
        }

        div.flex-item_a{
            background-color: cornflowerblue;
            width: 100px;
            height: 100px;
            margin: 10px;
        }

        /*CSS3 弹性盒子 direction*/
        div.flex-container_b{
            display: -webkit-flex;
            display: flex;
            width: 400px;
            height: 250px;
            background-color: lightsteelblue;
            direction: rtl;
        }

        div.flex-item_b{
            width: 100px;
            height: 100px;
            margin: 10px;
            background-color: cornflowerblue;
        }

        /*CSS3 弹性盒子 flex-direction*/
        div.flex-container_c{
            display: -webkit-flex;
            display: flex;
            -webkit-flex-direction: row-reverse;
            flex-direction: row-reverse;
            width: 400px;
            height: 250px;
            background-color: lightgray;

        }

        div.flex-item_c{
            width: 100px;
            height: 100px;
            margin: 10px;
            background-color: cornflowerblue;
        }


        div.flex-container_d{
            display: -webkit-flex;
            display: flex;
            -webkit-flex-direction: column-reverse;
            flex-direction: column-reverse;
            width: 400px;
            height: 250px;
            background-color: lightgray;

        }

        div.flex-item_d{
            width: 100px;
            height: 100px;
            margin: 10px;
            background-color: cornflowerblue;
        }

        /*CSS3 弹性盒子 justify-content*/
        div.flex-container_e{
            display: -webkit-flex;
            display: flex;
            -webkit-justify-content: flex-start;
            justify-content: flex-start;
            width: 500px;
            height: 250px;
            background-color: lightgray;
        }

        div.flex-item_e{
            width: 100px;
            height: 100px;
            margin: 10px;
            background-color: cornflowerblue;
        }

        div.flex-container_f{
            display: -webkit-flex;
            display: flex;
            -webkit-justify-content: flex-end;
            justify-content: flex-end;
            width: 500px;
            height: 250px;
            background-color: lightgray;
        }

        div.flex-item_f{
            width: 100px;
            height: 100px;
            margin: 10px;
            background-color: cornflowerblue;
        }


        div.flex-container_g{
            display: -webkit-flex;
            display: flex;
            -webkit-justify-content: center;
            justify-content: center;
            width: 500px;
            height: 250px;
            background-color: lightgray;
        }

        div.flex-item_g{
            width: 100px;
            height: 100px;
            background-color: cornflowerblue;
            margin: 10px;
        }

        div.flex-container_h{

            display: -webkit-flex;
            display: flex;
            -webkit-justify-content:space-between;
            justify-content: space-between;
            width: 500px;
            height: 250px;
            background-color: lightgray;
        }

        div.flex-item_h{
            width: 100px;
            height: 100px;
            margin: 10px;
            background-color: cornflowerblue;

        }


        div.flex-container_i{
            display: -webkit-flex;
            display: flex;
            -webkit-justify-content: space-around;
            justify-content: space-around;
            width: 500px;
            height: 250px;
            background-color: lightgray;
        }

        div.flex-item_i{
            width: 100px;
            height: 100px;
            margin: 10px;
            background-color: cornflowerblue;
        }


        /* CSS3 弹性盒子 align-items */

        div.flex-container_j{
            display: flex;
            display: -webkit-flex;
            align-items: flex-start;
            -webkit-align-items: flex-start;
            width: 500px;
            height: 400px;
            background-color: lightgray;
        }

        div.flex-item_j{
            width: 100px;
            margin: 10px;
            background-color: cornflowerblue;
        }

        div.flex-container_k{
            display: -webkit-flex;
            display: flex;
            align-items: flex-end;
            -webkit-align-items: flex-end;
            width: 500px;
            height: 400px;
            background-color: lightgray;
        }
        div.flex-item_k{
            width: 100px;
            margin: 10px;
            background-color: cornflowerblue;
        }


        div.flex-container_l{
            display: -webkit-flex;
            display: flex;
            -webkit-align-items: center;
            align-items: center;
            width: 500px;
            height: 400px;
            background-color: lightgray;
        }

        div.flex-item_l{
            width: 100px;
            margin: 10px;
            background-color: cornflowerblue;
        }

        div.flex-container_m{
            display: -webkit-flex;
            display: flex;
            -webkit-align-items: baseline;
            align-items: baseline;
            width: 500px;
            height: 400px;
            background-color: lightgray;
        }

        div.flex-item_m{
            width: 100px;
            margin: 10px;
            background-color: cornflowerblue;
        }

        div.flex-container_n{
            display: -webkit-flex;
            display: flex;
            -webkit-align-items: stretch;
            align-items: stretch;
            width: 500px;
            height: 400px;
            background-color: lightgray;
        }

        div.flex-item_n{
            width: 100px;
            margin: 10px;
            background-color: cornflowerblue;
        }

        /* CSS3 弹性盒子 flex-wrap */

        div.flex-container_p{
            display: -webkit-flex;
            display: flex;
            -webkit-flex-wrap: nowrap;
            flex-wrap: nowrap;
            width: 300px;
            height: 250px;
            background-color: lightgray;
        }

        div.flex-item_p{
            background-color: cornflowerblue;
            width: 100px;
            height: 100px;
            margin: 10px;
        }



        div.flex-container_q{
              display: -webkit-flex;
              display: flex;
              -webkit-flex-wrap: wrap;
              flex-wrap: wrap;
              width: 300px;
              height: 250px;
              background-color: lightgray;
          }

        div.flex-item_q{
            background-color: cornflowerblue;
            width: 100px;
            height: 100px;
            margin: 10px;
        }

        div.flex-container_r{
            display: -webkit-flex;
            display: flex;
            -webkit-flex-wrap: wrap-reverse;
            flex-wrap: wrap-reverse;
            width: 300px;
            height: 250px;
            background-color: lightgray;
        }

        div.flex-item_r{
            background-color: cornflowerblue;
            width: 100px;
            height: 100px;
            margin: 10px;
        }

        /* CSS3 弹性盒子 align-content */
        div.flex-container_s{
            display: -webkit-flex;
            display: flex;
            -webkit-align-content: center;
            align-content: center;
            -webkit-flex-wrap: wrap;
            flex-wrap: wrap;

            width: 300px;
            height: 400px;

            background-color: lightgray;
        }

        div.flex-item_s{
            width: 100px;
            height: 100px;
            margin: 10px;
            background-color: cornflowerblue;
        }


        /*弹性盒子 子元素属性*/
        /*order 排序*/
        div.flex-container{
            display: -webkit-flex;
            display: flex;
            width: 400px;
            height: 250px;
            background-color: lightgray;
        }

        div.flex-item{
            width: 100px;
            height: 100px;
            margin: 10px;
            background-color: cornflowerblue;
        }

        div.flex-item_auto{
            width: 100px;
            height: 100px;
            margin: auto;
            background-color: cornflowerblue;
        }

        div.order{
            order: -1;
        }

        div.margin-right-auto{
            margin-right: auto;
        }


        /*align-self*/
        div.flex-item_ss {
            background-color: cornflowerblue;
            width: 60px;
            min-height: 100px;
            margin: 10px;
        }

        div.item1 {
            -webkit-align-self: flex-start;
            align-self: flex-start;
        }
        div.item2 {
            -webkit-align-self: flex-end;
            align-self: flex-end;
        }

        div.item3 {
            -webkit-align-self: center;
            align-self: center;
        }

        div.item4 {
            -webkit-align-self: baseline;
            align-self: baseline;
        }

        div.item5 {
            -webkit-align-self: stretch;
            align-self: stretch;
        }



        div.flex-item_ff {
            background-color: cornflowerblue;
            margin: 10px;
        }

        div.itemf1 {
            -webkit-flex: 2;
            flex: 2;
        }

        div.itemf2 {
            -webkit-flex: 1;
            flex: 1;
        }

        div.itemf3 {
            -webkit-flex: 1;
            flex: 1;
        }

    </style>
</head>
<body>

<h2>CSS3 弹性盒子</h2>
<div class="flex-container_a">
    <div class="flex-item_a">Item 1</div>
    <div class="flex-item_a">Item 2</div>
    <div class="flex-item_a">Item 3</div>
</div>

<br><br>

<h2>CSS3 弹性盒子 direction</h2>
<div class="flex-container_b">
    <div class="flex-item_b">Item 1</div>
    <div class="flex-item_b">Item 2</div>
    <div class="flex-item_b">Item 3</div>
</div>

<br><br>

<h2>CSS3 弹性盒子 flex-direction</h2>
<h3> row-reverse</h3>
<div class="flex-container_c">
    <div class="flex-item_c">Item 1</div>
    <div class="flex-item_c">Item 2</div>
    <div class="flex-item_c">Item 3</div>
</div>

<br><br>

<h3> column-reverse</h3>
<div class="flex-container_d">
    <div class="flex-item_d">Item 1</div>
    <div class="flex-item_d">Item 2</div>
    <div class="flex-item_d">Item 3</div>
</div>

<br><br>

<h2>CSS3 弹性盒子 justify-content</h2>
<h3>flex-start</h3>
<div class="flex-container_e">
    <div class="flex-item_e">Item 1</div>
    <div class="flex-item_e">Item 2</div>
    <div class="flex-item_e">Item 3</div>
</div>

<br><br>

<h3>flex-end</h3>
<div class="flex-container_f">
    <div class="flex-item_f">Item 1</div>
    <div class="flex-item_f">Item 2</div>
    <div class="flex-item_f">Item 3</div>
</div>

<br><br>

<h3>center</h3>
<div class="flex-container_g">
    <div class="flex-item_g">Item 1</div>
    <div class="flex-item_g">Item 2</div>
    <div class="flex-item_g">Item 3</div>
</div>

<br><br>

<h3>space-between</h3>
<div class="flex-container_h">
    <div class="flex-item_h">Item 1</div>
    <div class="flex-item_h">Item 2</div>
    <div class="flex-item_h">Item 3</div>
</div>

<br><br>

<h3>space-around</h3>
<div class="flex-container_i">
    <div class="flex-item_i">Item 1</div>
    <div class="flex-item_i">Item 2</div>
    <div class="flex-item_i">Item 3</div>
</div>

<br><br>


<h2>CSS3 弹性盒子 align-items</h2>
<h3>flex-start</h3>
<div class="flex-container_j">
    <div class="flex-item_j">Item 1</div>
    <div class="flex-item_j">Item 2</div>
    <div class="flex-item_j">Item 3</div>
</div>

<br><br>

<h3>flex-end</h3>
<div class="flex-container_k">
    <div class="flex-item_k">Item 1</div>
    <div class="flex-item_k">Item 2</div>
    <div class="flex-item_k">Item 3</div>
</div>

<br><br>

<h3>center</h3>
<div class="flex-container_l">
    <div class="flex-item_l">Item 1</div>
    <div class="flex-item_l">Item 2</div>
    <div class="flex-item_l">Item 3</div>
</div>

<br><br>

<h3>baseline</h3>
<div class="flex-container_m">
    <div class="flex-item_m">Item 1</div>
    <div class="flex-item_m">Item 2</div>
    <div class="flex-item_m">Item 3</div>
</div>

<br><br>

<h3>stretch</h3>
<div class="flex-container_n">
    <div class="flex-item_n">Item 1</div>
    <div class="flex-item_n">Item 2</div>
    <div class="flex-item_n">Item 3</div>
</div>

<br><br>



<h2>CSS3 弹性盒子 flex-wrap</h2>
<h3>nowrap</h3>
<div class="flex-container_p">
    <div class="flex-item_p">Item 1 Item 1 Item 1</div>
    <div class="flex-item_p">Item 2 Item 2 Item 2</div>
    <div class="flex-item_p">Item 3 Item 3 Item 3</div>
</div>

<br><br>

<h3>wrap</h3>
<div class="flex-container_q">
    <div class="flex-item_q">Item 1</div>
    <div class="flex-item_q">Item 2</div>
    <div class="flex-item_q">Item 3</div>
</div>

<br><br>

<h3>wrap-reverse</h3>
<div class="flex-container_r">
    <div class="flex-item_r">Item 1</div>
    <div class="flex-item_r">Item 2</div>
    <div class="flex-item_r">Item 3</div>
</div>

<br><br>


<h2>CSS3 弹性盒子 aglign-content</h2>
<h3>nowrap</h3>
<div class="flex-container_s">
    <div class="flex-item_s">Item 1 Item 1 Item 1</div>
    <div class="flex-item_s">Item 2 Item 2 Item 2</div>
    <div class="flex-item_s">Item 3 Item 3 Item 3</div>
</div>

<br><br>

<h2>CSS3 弹性盒子 弹性子元素属性</h2>
<h3>排序 order</h3>
<div class="flex-container">
    <div class="flex-item">flex item 1</div>
    <div class="flex-item order">flex item 2</div>
    <div class="flex-item">flex item 3</div>
</div>
<br><br>


<h3>margin-right: auto</h3>
<div class="flex-container">
    <div class="flex-item">flex item 1</div>
    <div class="flex-item margin-right-auto">flex item 2</div>
    <div class="flex-item">flex item 3</div>
</div>
<br><br>

<h3>完美居中</h3>
<div class="flex-container">
    <div class="flex-item_auto">flex item 1</div>
</div>
<br><br>

<h3>align-self</h3>

<div class="flex-container">
    <div class="flex-item_ss item1">flex-start</div>
    <div class="flex-item_ss item2">flex-end</div>
    <div class="flex-item_ss item3">center</div>
    <div class="flex-item_ss item4">baseline</div>
    <div class="flex-item_ss item5">stretch</div>
</div>

<br><br>

<h3>flex</h3>
<div class="flex-container">
    <div class="flex-item_ff itemf1">flex item 1</div>
    <div class="flex-item_ff itemf2">flex item 2</div>
    <div class="flex-item_ff itemf3">flex item 3</div>
</div>

</body>
</html>

1、CSS3 弹性盒子(Flex Box)

弹性盒子是 CSS3 的一种新的布局模式。

CSS3 弹性盒( Flexible Box 或 flexbox),是一种当页面需要适应不同的屏幕大小以及

设备类型时确保元素拥有恰当的行为的布局方式。

引入弹性盒布局模型的目的是提供一种更加有效的方式来对一个容器中的子元素进行排列、对齐和分配空白空间。

2、CSS3 弹性盒子内容

弹性盒子由弹性容器(Flex container)和弹性子元素(Flex item)组成。

弹性容器通过设置 display 属性的值为 flex 或 inline-flex将其定义为弹性容器。

弹性容器内包含了一个或多个弹性子元素。

注意: 弹性容器外及弹性子元素内是正常渲染的。弹性盒子只定义了弹性子元素如何在弹性容器内布局。

弹性子元素通常在弹性盒子内一行显示。默认情况每个容器只有一行。

以下元素展示了弹性子元素在一行内显示,从左到右:

实例

<!DOCTYPE html>
<html>
<head>
<style>
.flex-container {
    display: -webkit-flex;
    display: flex;
    width: 400px;
    height: 250px;
    background-color: lightgrey;
}

.flex-item {
    background-color: cornflowerblue;
    width: 100px;
    height: 100px;
    margin: 10px;
}
</style>
</head>
<body>

<div class="flex-container">
  <div class="flex-item">flex item 1</div>
  <div class="flex-item">flex item 2</div>
  <div class="flex-item">flex item 3</div>
</div>

</body>
</html>

当然我们可以修改排列方式。

如果我们设置 direction 属性为 rtl (right-to-left),弹性子元素的排列方式也会改变,页面布局也跟着改变:

实例

body {
    direction: rtl;
}

.flex-container {
    display: -webkit-flex;
    display: flex;
    width: 400px;
    height: 250px;
    background-color: lightgrey;
}

.flex-item {
    background-color: cornflowerblue;
    width: 100px;
    height: 100px;
    margin: 10px;
}

3、flex-direction

flex-direction 属性指定了弹性子元素在父容器中的位置。

语法
flex-direction: row | row-reverse | column | column-reverse
flex-direction的值有:

row:横向从左到右排列(左对齐),默认的排列方式。
row-reverse:反转横向排列(右对齐,从后往前排,最后一项排在最前面。
column:纵向排列。
column-reverse:反转纵向排列,从后往前排,最后一项排在最上面。
以下实例演示了 row-reverse 的使用:

实例

.flex-container {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
    width: 400px;
    height: 250px;
    background-color: lightgrey;
}

以下实例演示了 column 的使用:

实例

.flex-container {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 400px;
    height: 250px;
    background-color: lightgrey;
}

以下实例演示了 column-reverse 的使用:

实例

.flex-container {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    width: 400px;
    height: 250px;
    background-color: lightgrey;
}

4、justify-content 属性

内容对齐(justify-content)属性应用在弹性容器上,把弹性项沿着弹性容器的主轴线(main axis)对齐。

justify-content 语法如下:

justify-content: flex-start | flex-end | center | space-between | space-around
各个值解析:

flex-start:
弹性项目向行头紧挨着填充。这个是默认值。第一个弹性项的main-start外边距边线被放置在该行的main-start边线,而后续弹性项依次平齐摆放。

flex-end:
弹性项目向行尾紧挨着填充。第一个弹性项的main-end外边距边线被放置在该行的main-end边线,而后续弹性项依次平齐摆放。

center:
弹性项目居中紧挨着填充。(如果剩余的自由空间是负的,则弹性项目将在两个方向上同时溢出)。

space-between:
弹性项目平均分布在该行上。如果剩余空间为负或者只有一个弹性项,则该值等同于flex-start。否则,第1个弹性项的外边距和行的main-start边线对齐,而最后1个弹性项的外边距和行的main-end边线对齐,然后剩余的弹性项分布在该行上,相邻项目的间隔相等。

space-around:
弹性项目平均分布在该行上,两边留有一半的间隔空间。如果剩余空间为负或者只有一个弹性项,则该值等同于center。否则,弹性项目沿该行分布,且彼此间隔相等(比如是20px),同时首尾两边和弹性容器之间留有一半的间隔(1/2*20px=10px)。

以下实例演示了 flex-end 的使用:

实例

.flex-container {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    width: 400px;
    height: 250px;
    background-color: lightgrey;
}

以下实例演示了 center 的使用:

实例

.flex-container {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    width: 400px;
    height: 250px;
    background-color: lightgrey;
}

以下实例演示了 space-between 的使用:

实例

.flex-container {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 400px;
    height: 250px;
    background-color: lightgrey;
}

以下实例演示了 space-around 的使用:

实例

.flex-container {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    width: 400px;
    height: 250px;
    background-color: lightgrey;
}

5、align-items 属性

align-items 设置或检索弹性盒子元素在侧轴(纵轴)方向上的对齐方式。

语法
align-items: flex-start | flex-end | center | baseline | stretch
各个值解析:

flex-start:弹性盒子元素的侧轴(纵轴)起始位置的边界紧靠住该行的侧轴起始边界。
flex-end:弹性盒子元素的侧轴(纵轴)起始位置的边界紧靠住该行的侧轴结束边界。
center:弹性盒子元素在该行的侧轴(纵轴)上居中放置。(如果该行的尺寸小于弹性盒子元素的尺寸,则会向两个方向溢出相同的长度)。
baseline:如弹性盒子元素的行内轴与侧轴为同一条,则该值与'flex-start'等效。其它情况下,该值将参与基线对齐。
stretch:如果指定侧轴大小的属性值为'auto',则其值会使项目的边距盒的尺寸尽可能接近所在行的尺寸,但同时会遵照'min/max-width/height'属性的限制。
以下实例演示了 stretch(默认值) 的使用:

实例

.flex-container {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: stretch;
    align-items: stretch;
    width: 400px;
    height: 250px;
    background-color: lightgrey;
}

以下实例演示了 flex-start 的使用:

实例

.flex-container {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    width: 400px;
    height: 250px;
    background-color: lightgrey;
}

以下实例演示了 flex-end 的使用:

实例

.flex-container {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    width: 400px;
    height: 250px;
    background-color: lightgrey;
}

以下实例演示了 center 的使用:

实例

.flex-container {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    width: 400px;
    height: 250px;
    background-color: lightgrey;
}

以下实例演示了 baseline 的使用:

实例

.flex-container {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: baseline;
    align-items: baseline;
    width: 400px;
    height: 250px;
    background-color: lightgrey;
}

5、flex-wrap 属性

flex-wrap 属性用于指定弹性盒子的子元素换行方式。

语法
flex-wrap: nowrap|wrap|wrap-reverse|initial|inherit;
各个值解析:

nowrap - 默认, 弹性容器为单行。该情况下弹性子项可能会溢出容器。
wrap - 弹性容器为多行。该情况下弹性子项溢出的部分会被放置到新行,子项内部会发生断行
wrap-reverse -反转 wrap 排列。
以下实例演示了 nowrap 的使用:

实例

.flex-container {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 300px;
    height: 250px;
    background-color: lightgrey;
}

以下实例演示了 wrap 的使用:

实例

.flex-container {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 300px;
    height: 250px;
    background-color: lightgrey;
}

以下实例演示了 wrap-reverse 的使用:

实例

.flex-container {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
    width: 300px;
    height: 250px;
    background-color: lightgrey;
}

6、align-content 属性

align-content 属性用于修改 flex-wrap 属性的行为。类似于 align-items, 但它不是设置弹性子元素的对齐,而是设置各个行的对齐。

语法
align-content: flex-start | flex-end | center | space-between | space-around | stretch
各个值解析:

stretch - 默认。各行将会伸展以占用剩余的空间。
flex-start - 各行向弹性盒容器的起始位置堆叠。
flex-end - 各行向弹性盒容器的结束位置堆叠。
center -各行向弹性盒容器的中间位置堆叠。
space-between -各行在弹性盒容器中平均分布。
space-around - 各行在弹性盒容器中平均分布,两端保留子元素与子元素之间间距大小的一半。
以下实例演示了 center 的使用:

实例

.flex-container {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-content: center;
    align-content: center;
    width: 300px;
    height: 300px;
    background-color: lightgrey;
}


弹性子元素属性
排序
语法
order:
各个值解析:

<integer>:用整数值来定义排列顺序,数值小的排在前面。可以为负值。
order 属性设置弹性容器内弹性子元素的属性:

实例

.flex-item {
    background-color: cornflowerblue;
    width: 100px;
    height: 100px;
    margin: 10px;
}

.first {
    -webkit-order: -1;
    order: -1;
}

对齐
设置"margin"值为"auto"值,自动获取弹性容器中剩余的空间。所以设置垂直方向margin值为"auto",可以使弹性子元素在弹性容器的两上轴方向都完全居中。

以下实例在第一个弹性子元素上设置了 margin-right: auto; 。 它将剩余的空间放置在元素的右侧:

实例

.flex-item {
    background-color: cornflowerblue;
    width: 75px;
    height: 75px;
    margin: 10px;
}

.flex-item:first-child {
    margin-right: auto;
}

完美的居中
以下实例将完美解决我们平时碰到的居中问题。

使用弹性盒子,居中变的很简单,只想要设置 margin: auto; 可以使得弹性子元素在两上轴方向上完全居中:

实例

.flex-item {
    background-color: cornflowerblue;
    width: 75px;
    height: 75px;
    margin: auto;
}

7、align-self

align-self 属性用于设置弹性元素自身在侧轴(纵轴)方向上的对齐方式。

语法
align-self: auto | flex-start | flex-end | center | baseline | stretch
各个值解析:

auto:如果'align-self'的值为'auto',则其计算值为元素的父元素的'align-items'值,如果其没有父元素,则计算值为'stretch'。
flex-start:弹性盒子元素的侧轴(纵轴)起始位置的边界紧靠住该行的侧轴起始边界。
flex-end:弹性盒子元素的侧轴(纵轴)起始位置的边界紧靠住该行的侧轴结束边界。
center:弹性盒子元素在该行的侧轴(纵轴)上居中放置。(如果该行的尺寸小于弹性盒子元素的尺寸,则会向两个方向溢出相同的长度)。
baseline:如弹性盒子元素的行内轴与侧轴为同一条,则该值与'flex-start'等效。其它情况下,该值将参与基线对齐。
stretch:如果指定侧轴大小的属性值为'auto',则其值会使项目的边距盒的尺寸尽可能接近所在行的尺寸,但同时会遵照'min/max-width/height'属性的限制。
以下实例演示了弹性子元素上 align-self 不同值的应用效果:

实例

.flex-item {
    background-color: cornflowerblue;
    width: 60px;
    min-height: 100px;
    margin: 10px;
}

.item1 {
    -webkit-align-self: flex-start;
    align-self: flex-start;
}
.item2 {
    -webkit-align-self: flex-end;
    align-self: flex-end;
}

.item3 {
    -webkit-align-self: center;
    align-self: center;
}

.item4 {
    -webkit-align-self: baseline;
    align-self: baseline;
}

.item5 {
    -webkit-align-self: stretch;
    align-self: stretch;
}

8、flex

flex 属性用于指定弹性子元素如何分配空间。

语法
flex: auto | initial | none | inherit | [ flex-grow ] || [ flex-shrink ] || [ flex-basis ]
各个值解析:

auto: 计算值为 1 1 auto
initial: 计算值为 0 1 auto
none:计算值为 0 0 auto
inherit:从父元素继承
[ flex-grow ]:定义弹性盒子元素的扩展比率。
[ flex-shrink ]:定义弹性盒子元素的收缩比率。
[ flex-basis ]:定义弹性盒子元素的默认基准值。
以下实例中,第一个弹性子元素占用了 2/4 的空间,其他两个各占 1/4 的空间:

实例

.flex-item {
    background-color: cornflowerblue;
    margin: 10px;
}

.item1 {
    -webkit-flex: 2;
    flex: 2;
}

.item2 {
    -webkit-flex: 1;
    flex: 1;
}

.item3 {
    -webkit-flex: 1;
    flex: 1;
}

9、CSS3 弹性盒子属性

下表列出了在弹性盒子中常用到的属性:

属性 描述
display 指定 HTML 元素盒子类型。
flex-direction 指定了弹性容器中子元素的排列方式
justify-content 设置弹性盒子元素在主轴(横轴)方向上的对齐方式。
align-items 设置弹性盒子元素在侧轴(纵轴)方向上的对齐方式。
flex-wrap 设置弹性盒子的子元素超出父容器时是否换行。
align-content 修改 flex-wrap 属性的行为,类似 align-items, 但不是设置子元素对齐,而是设置行对齐
flex-flow flex-direction 和 flex-wrap 的简写
order 设置弹性盒子的子元素排列顺序。
align-self 在弹性子元素上使用。覆盖容器的 align-items 属性。
flex 设置弹性盒子的子元素如何分配空间。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,132评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,802评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,566评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,858评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,867评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,695评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,064评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,705评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,915评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,677评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,796评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,432评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,041评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,992评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,223评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,185评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,535评论 2 343

推荐阅读更多精彩内容

  • 分割页面区域的大盒子宽度一定要给百分比,这样才能不丢失精度。 5、移动端布局场景:三等分自适应容器《三等分父容器,...
    小豌豆书吧阅读 1,722评论 0 0
  • 一、概念与定义 1.弹性盒子是CSS3引入的一种新的布局模式——Flexbox。 2.Flexbox布局叫做弹性盒...
    八点多的橘子阅读 1,062评论 0 13
  • display:flex;(块级行内都能使用,弹性盒子不能和浮动一起使用) 盒子居中(给父盒子添加以下属性,容器添...
    _Enco_阅读 1,061评论 0 0
  • 前言 弹性盒子,顾名思义:它是具有弹性功能的,在Web网页中,你所看见的内容,不会随着网页宽度的变化而打乱了排版。...
    lvanboy阅读 1,469评论 5 17
  • 不知道从何时起无论走到哪个地方,书店,咖啡馆,电影院,步行街,曾一起走过的马路,一起去抢着吃的小吃摊。会低头不语,...
    梦念初心阅读 176评论 0 0