1. 主页
  2. 文档
  3. 移动基础
  4. ★★flex总结

★★flex总结

考虑:

1,谁是容器。

2,谁是项目。

3,项目也可以变为容器。

=================================

//==容器的属性:
flex-direction 决定主轴的方向
flex-wrap  如果一条轴线排不下,如何换行
flex-flow  简写:换行flex-wrap属性的简写
justify-content  定义了项目在主轴上的对齐方式
align-items  定义项目在交叉轴上如何对齐
align-content  定义了多根轴线(多行)在交叉轴上的对齐方式

//==项目的属性
order  属性定义项目的排列顺序
flex-grow 定义项目的放大比例,默认为0,即如果存在剩余空间,也不放大
flex-shrink  定义了项目的缩小比例,默认为1,即如果空间不足,该项目将缩小
flex-basis  定义了在分配多余空间之前,项目占据的主轴空间(main size)
flex  flex-grow, flex-shrink 和 flex-basis 的简写,默认值为0 1 auto
align-self  允许单个项目有与其他项目不一样的对齐方式

.box{
display: flex;
}

.box{
display: inline-flex;
}

.box{
display: -webkit-flex; /* Safari */
display: flex;
}

图示文档:

=====================================

//==容器的属性:
flex-direction 决定主轴的方向
flex-wrap  如果一条轴线排不下,如何换行
flex-flow  简写:换行flex-wrap属性的简写
justify-content  定义了项目在主轴上的对齐方式
align-items  定义项目在交叉轴上如何对齐
align-content  定义了多根轴线(多行)在交叉轴上的对齐方式

———————————————–
flex-direction
.box {
flex-direction: row | row-reverse | column | column-reverse;
}
row(默认值):主轴为水平方向,起点在左端。
row-reverse:主轴为水平方向,起点在右端。
column:主轴为垂直方向,起点在上沿。
column-reverse:主轴为垂直方向,起点在下沿。

flex-wrap属性
.box{
flex-wrap: nowrap | wrap | wrap-reverse;
}
nowrap(默认):不换行。
wrap:换行,第一行在上方。
wrap-reverse:换行,第一行在下方。

flex-flow
.box {
flex-flow: <flex-direction> || <flex-wrap>;
}
flex-flow属性是flex-direction属性和flex-wrap属性的简写形式,默认值为row nowrap。

justify-content属性
.box {
justify-content: flex-start | flex-end | center | space-between | space-around;
}
flex-start(默认值):左对齐
flex-end:右对齐
center: 居中
space-between:两端对齐,项目之间的间隔都相等。
space-around:每个项目两侧的间隔相等。所以,项目之间的间隔比项目与边框的间隔大一倍。

align-items属性
.box {
align-items: flex-start | flex-end | center | baseline | stretch;
}
flex-start:交叉轴的起点对齐。
flex-end:交叉轴的终点对齐。
center:交叉轴的中点对齐。
baseline: 项目的第一行文字的基线对齐。
stretch(默认值):如果项目未设置高度或设为auto,将占满整个容器的高度。

align-content属性
.box {
align-content: flex-start | flex-end | center | space-between | space-around | stretch;
}
flex-start:与交叉轴的起点对齐。
flex-end:与交叉轴的终点对齐。
center:与交叉轴的中点对齐。
space-between:与交叉轴两端对齐,轴线之间的间隔平均分布。
space-around:每根轴线两侧的间隔都相等。所以,轴线之间的间隔比轴线与边框的间隔大一倍。
stretch(默认值):轴线占满整个交叉轴。

//==项目的属性
order  属性定义项目的排列顺序
flex-grow 定义项目的放大比例,默认为0,即如果存在剩余空间,也不放大
flex-shrink  定义了项目的缩小比例,默认为1,即如果空间不足,该项目将缩小
flex-basis  定义了在分配多余空间之前,项目占据的主轴空间(main size)
flex  flex-grow, flex-shrink 和 flex-basis 的简写,默认值为0 1 auto
align-self  允许单个项目有与其他项目不一样的对齐方式
———————————————–
order属性
.item {
order: <integer>;
}
order属性定义项目的排列顺序。数值越小,排列越靠前,默认为0。

flex-grow属性
.item {
flex-grow: <number>; /* default 0 */
}
flex-grow属性定义项目的放大比例,默认为0,即如果存在剩余空间,也不放大。

flex-shrink属性
.item {
flex-shrink: <number>; /* default 1 */
}
如果所有项目的flex-shrink属性都为1,当空间不足时,都将等比例缩小。如果一个项目的flex-shrink属性为0,其他项目都为1,则空间不足时,前者不缩小。负值对该属性无效。

flex-basis属性
.item {
flex-basis: <length> | auto; /* default auto */
}
flex-basis属性定义了在分配多余空间之前,项目占据的主轴空间(main size)。浏览器根据这个属性,计算主轴是否有多余空间。它的默认值为auto,即项目的本来大小。
它可以设为跟width或height属性一样的值(比如350px),则项目将占据固定空间。

flex属性
.item {
flex: none | [ <‘flex-grow’> <‘flex-shrink’>? || <‘flex-basis’> ]
}
flex属性是flex-grow, flex-shrink 和 flex-basis的简写,默认值为0 1 auto。后两个属性可选。
该属性有两个快捷值:auto (1 1 auto) 和 none (0 0 auto)。
建议优先使用这个属性,而不是单独写三个分离的属性,因为浏览器会推算相关值。

align-self属性
.item {
align-self: auto | flex-start | flex-end | center | baseline | stretch;
}
align-self属性允许单个项目有与其他项目不一样的对齐方式,可覆盖align-items属性。默认值为auto,表示继承父元素的align-items属性,如果没有父元素,则等同于stretch。

=================================
flex基础代码案例:
<style>
    .first-face {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .second-face {
        display: flex;
        justify-content: space-between;
    }
    .second-face .pip:nth-of-type(2) {
        align-self: flex-end;
    }
    .third-face {
        display: flex;
        justify-content: space-between;
    }
    .third-face .pip:nth-of-type(2) {
        align-self: center;
    }
    .third-face .pip:nth-of-type(3) {
        align-self: flex-end;
    }
    .fourth-face,
    .sixth-face {
        display: flex;
        justify-content: space-between;
    }
    .fourth-face .column,
    .sixth-face .column {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .fifth-face {
        display: flex;
        justify-content: space-between;
    }
    .fifth-face .column {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .fifth-face .column:nth-of-type(2) {
        justify-content: center;
    }
    /* OTHER STYLES */
    * {
        box-sizing: border-box;
    }
    html,
    body {
        height: 100%;
    }
    body {
        display: flex;
        align-items: center;
        justify-content: center;
        vertical-align: center;
        flex-wrap: wrap;
        align-content: center;
        font-family: ‘Open Sans’, sans-serif;
        background: linear-gradient(top, #222, #333);
    }
    [class$=”face”] {
        margin: 16px;
        padding: 4px;
        background-color: #e7e7e7;
        width: 104px;
        height: 104px;
        object-fit: contain;
        box-shadow:
            inset 0 5px white,
            inset 0 -5px #bbb,
            inset 5px 0 #d7d7d7,
            inset -5px 0 #d7d7d7;
        border-radius: 10%;
    }
    .pip {
        display: block;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        margin: 4px;
        background-color: #333;
        box-shadow: inset 0 3px #111, inset 0 -3px #555;
    }
</style>
<div class=”first-face”>
    <span class=”pip”></span>
</div>
<div class=”second-face”>
    <span class=”pip”></span>
    <span class=”pip”></span>
</div>
<div class=”third-face”>
    <span class=”pip”></span>
    <span class=”pip”></span>
    <span class=”pip”></span>
</div>
<div class=”fourth-face”>
    <div class=”column”>
        <span class=”pip”></span>
        <span class=”pip”></span>
    </div>
    <div class=”column”>
        <span class=”pip”></span>
        <span class=”pip”></span>
    </div>
</div>
<div class=”fifth-face”>
    <div class=”column”>
        <span class=”pip”></span>
        <span class=”pip”></span>
    </div>
    <div class=”column”>
        <span class=”pip”></span>
    </div>
    <div class=”column”>
        <span class=”pip”></span>
        <span class=”pip”></span>
    </div>
</div>
<div class=”sixth-face”>
    <div class=”column”>
        <span class=”pip”></span>
        <span class=”pip”></span>
        <span class=”pip”></span>
    </div>
    <div class=”column”>
        <span class=”pip”></span>
        <span class=”pip”></span>
        <span class=”pip”></span>
    </div>
</div>
==============================
flex布局大体框架案例:
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>

<body>
    <style>
        * {
            box-sizing: border-box;
            padding: 0;
            margin: 0;
        }
        
        html {
            height: 100%;
        }
        
        body {
            display: flex;
            min-width: 100%;
            background-color: #e2e2e2;
            color: #595B66;
            flex-direction: column;
            min-height: 100%;
        }
        
        a {
            font-size: 12px;
            color: #686868;
            text-decoration: none;
        }
        
        li {
            list-style: none;
        }
        
        .header {
            width: 100%;
            height: 50px;
            background-color: black;
            color: #e2e2e2;
        }
        
        .main {
            flex: 1;
            display: flex;
        }
        
        .left {
            width: 150px;
            background-color: aquamarine;
        }
        
        .right {
            flex: 1;
            background-color: #686868;
        }
        
        .foot {
            width: 100%;
            height: 50px;
            background-color: black;
            color: cornsilk;
        }
        
        .foot .ful {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
        }
        
        .foot .ful .fli {
            flex: 1;
            display: flex;
            height: 100%;
            align-items: center;
            justify-content: center;
        }
        
        .foot .ful .fli .fa {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
        }
    </style>

    <div class="header">header</div>


    <div class="main">
        <div class="left">left</div>
        <div class="right">right</div>
    </div>

    <div class="foot">
        <ul class="ful">
            <li class="fli">
                <a href="#" class="fa">
                    <i></i>
                    <span>首页</span>
                </a>
            </li>
            <li class="fli">
                <a href="#" class="fa">
                    <i></i>
                    <span>分类</span>
                </a>
            </li>
            <li class="fli">
                <a href="#" class="fa">
                    <i></i>
                    <span>购物车</span>
                </a>
            </li>
            <li class="fli">
                <a href="#" class="fa">
                    <i></i>
                    <span>个人中心</span>
                </a>
            </li>
        </ul>
    </div>

</body>

</html>
这篇文章对您有用吗?

我们要如何帮助您?