HTML-CSS:伸缩布局

主轴方向

            /*

            在伸缩布局中, 默认伸缩项是从左至右的排版的

            */

            display: flex;

            /*

            主轴的排版的方向默认就是row, 默认就是从左至右

            */

            /*flex-direction: row;*/

            /*

            修改主轴的排版方向为从右至左

            */

            /*flex-direction: row-reverse;*/

            /*

            告诉系统把主轴的方向改为垂直方向

            注意点:

            1.默认情况下主轴是水平方向的, 但是也可以修改为垂直方向.只要看到flex-direction: column/column-reverse就代表主轴被修改为了垂直方向

            2.如果将主轴修改为了垂直方向, 那么侧轴就会自动从垂直方向转换为水平方向

            */

            /*

            修改主轴的排版方向为从上至下

            */

            /*flex-direction: column;*/

            /*

            修改主轴的排版方向为从下至上

            */

            flex-direction: column-reverse;



主轴对齐方式

            display: flex;

            /*

            justify-content:

            用于设置伸缩项主轴上的对齐方式

            如果设置为flex-start, 代表告诉系统伸缩项和主轴的起点对齐

            */

            /*justify-content: flex-start;*/

            /*和主轴的终点对齐*/

            /*justify-content: flex-end;*/

            /*居中对齐*/

            /*justify-content: center;*/

            /*两端对齐*/

            /*justify-content: space-between;*/

            /*环绕对齐*/

            justify-content: space-around;




侧轴对齐方式

            display: flex;

            /*

            通过align-items可以修改侧轴的对齐方式

            默认情况下是以侧轴的起点对齐

            */

            /*align-items: flex-start;*/

            /*align-items: flex-end;*/

            /*align-items: center;*/

            /*

            注意点:

            和主轴不同的是, 侧轴没有两端对齐和环绕对齐

            */

            /*基线对齐*/

            /*align-items: baseline;*/

            /*拉伸对齐*/

            align-items: stretch;



            /*

            如果在伸缩容器中通过 align-items 修改侧轴的对齐方式, 是修改所有伸缩项侧轴的对齐方式

            如果是在伸缩项中通过 align-self 修改侧轴的对齐方式, 是单独修改当前伸缩项侧轴的对齐方式

            align-self属性的取值和align-items一样

            */

            align-self: flex-end;


主轴和侧轴的交叉问题


            display: flex;

            /*

            默认情况下主轴是水平方向, 侧轴是垂直方向

            默认情况下主轴的起点在伸缩容器的最左边, 主轴的终点在伸缩容器的最右边

            默认情况下侧轴的起点在伸缩容器的最顶部, 侧轴的终点在伸缩容器的最底部

            我们可以通过flex-direction属性修改主轴的方向

            如果flex-direction属性的取值是column/column-reverse

            就代表将主轴的方向修改为了垂直方向, 那么侧轴就会立刻变为水平方向

            */

            /*justify-content: space-around;*/

            /*flex-direction: column;*/

            /*align-items: center;*/



换行

            display: flex;

            /*

            在伸缩布局中, 如果伸缩容器的宽度不够, 系统会自动压缩伸缩项的宽度, 保证所有的伸缩想都能放在伸缩容器中

            如果当伸缩容器宽度不够时, 不想让伸缩项被压缩, 也可以让系统换行flex-wrap: wrap;

            默认情况下如果伸缩容器的高度比换行之后所有伸缩项的高度还要高, 那么系统会自动将剩余空间平分之后添加给每一行

            */

            /*宽度不够也不换行, 默认取值*/

            /*flex-wrap: nowrap;*/

            flex-wrap: wrap;

            /*flex-wrap: wrap-reverse;*/

        }



换行对齐

            display: flex;

            flex-wrap: wrap;

            /*

            如果伸缩容器中的伸缩项换行了, 那么我们就可以通过align-content来设置行与行之间的对齐方式

            */

            /*align-content: flex-start;*/

            /*align-content: flex-end;*/

            /*align-content: center;*/

            /*align-content: space-between;*/

            /*align-content: space-around;*/

            /*

            默认情况下换行就是就是拉伸对齐

            一定要注意: 在换行中的拉伸对齐是指, 所有行的高度总和要和伸缩容器的高度一样

            所以会将多余的空间平分之后添加给每一行

            */

            align-content: stretch;

        }


伸缩项排序

        ul{

            width: 400px;

            height: 400px;

            border: 1px solid #000;

            margin: 100px auto;

            list-style: none;

            display: flex;

            }

            ul>li{

            width: 100px;

            height: 100px;

            background-color: pink;

            text-align: center;

            line-height: 100px;

            font-size: 35px;

        }

        ul>li:nth-child(1){

            /*

            如果想调整伸缩布局中伸缩项的顺序, 那么我们可以通过修改伸缩项的order属性来实现

            默认情况下order的取值是0

            如果我们设置了order属性的值, 那么系统就会按照设置的值从小到大的排序

            */

            order:-1;

        }

        ul>li:nth-child(2){

            background-color: skyblue;

            order: 2;

        }

        ul>li:nth-child(3){

            background-color: yellow;

            order: 1;

        }


伸缩项扩充

            ul{

            width: 400px;

            height: 400px;

            border: 1px solid #000;

            margin: 100px auto;

            list-style: none;

            display: flex;

        }

        ul>li{

            width: 100px;

            height: 100px;

            background-color: pink;

            text-align: center;

            line-height: 100px;

            font-size: 35px;

        }

        ul>li:nth-child(1){

            /*

            1.flex-grow作用:

            当所有伸缩项宽度的总和没有伸缩容器宽度大的时, 我们可以通过flex-grow让系统调整伸缩项的宽度, 以便于让所有伸缩项的宽度的总和等于伸缩容器的宽度

            2.flex-grow计算公式

            2.1计算剩余的空间

            伸缩容器宽度 - 所有伸缩项的宽度

            400 - 300 = 100

            2.2计算每份剩余空间的宽度

            剩余空间 / 需要的份数

            100 / 6 = 16.66

            2.3计算每个伸缩项最终的宽度

            伸缩项的宽度 + 需要的份数 * 每份的宽度

            注意点:

            flex-grow默认值是0

            */

            flex-grow: 1;

            /*100 + 1 * 16.66 = 116.66*/

        }

        ul>li:nth-child(2){

            background-color: skyblue;

            flex-grow: 2;

            /*100 + 2 * 16.66 = 133.3*/

        }

        ul>li:nth-child(3){

            background-color: yellow;

            flex-grow: 3;

            /*100 + 3 * 16.66 = 149.8*/

        }


伸缩项缩小

            ul{

            width: 400px;

            height: 400px;

            border: 1px solid #000;

            margin: 100px auto;

            list-style: none;

            display: flex;

        }

        ul>li{

            width: 200px;

            height: 200px;

            background-color: pink;

            text-align: center;

            line-height: 200px;

            font-size: 35px;

        }

        ul>li:nth-child(1){

            /*

            1.flex-shrink作用:

              当所有伸缩项宽度的总和比伸缩容器宽度大的时, 我们可以通过flex-shrink让系统调整伸缩项的宽度, 以便于让所有伸缩项的宽度的总和等于伸缩容器的宽度

            2.计算每个伸缩项需要压缩的宽度

            2.1计算溢出的宽度

            伸缩容器的宽度 -  所有伸缩项的宽度总和

            400 - 600 = -200

            2.2计算总权重

            每个伸缩项需要的份数 * 每个伸缩项的宽度

            1 * 200 +  2 * 200 + 3 * 200 = 1200

            2.3计算每个伸缩项需要压缩的宽度

            溢出的宽度 * 需要的份数 * 每个伸缩项的宽度 / 总权重

            -200 * 1 * 200 / 1200 = -33.33

            注意点:

            flex-shrink: 默认值是1

            */

            flex-shrink: 1;

        }

        ul>li:nth-child(2){

            background-color: skyblue;

            flex-shrink: 2;

        }

        ul>li:nth-child(3){

            background-color: yellow;

            flex-shrink: 3;

        }


伸缩项扩充缩小注意点

            ul{

            width: 400px;

            height: 400px;

            border: 1px solid #000;

            margin: 100px auto;

            list-style: none;

            display: flex;

        }

        ul>li{

            width: 200px;

            height: 200px;

            background-color: pink;

            text-align: center;

            line-height: 200px;

            font-size: 35px;

        }

        ul>li:nth-child(1){

            /*

            如果有伸缩项没有设置flex-grow, 那么系统会保持原有的宽度

            而会将多余的宽度等分之后, 按照每个伸缩项需要的份数添加给它们

            如果想让某个伸缩项不缩小, 那么需要将它的flex-shrink设置为0

            */

            flex-shrink: 0;

        }

        ul>li:nth-child(2){

            background-color: skyblue;

            flex-grow: 1;

        }

        ul>li:nth-child(3){

            background-color: yellow;

            flex-grow: 4;

        }


宽度设置

            ul>li:nth-child(1){

            /*

            如果是伸缩布局, 除了可以通过元素的width属性来设置宽度以外, 还可以通过flex-basis属性来设置伸缩项的宽度

            注意点:

            1.width属性可以设置宽度/flex-basis也可以设置宽度

            那么如果两者同时存在, 系统会听flex-basis的

            2.flex-basis属性是专门提供给伸缩布局使用的

            3.如果同时通过这两个属性设置了宽度, 但是其中一个是auto, 那么系统会按照具体值来设置

            */

            flex-basis: 100px;

            /*width: 200px;*/

            width: auto;

            /*flex-basis: auto;*/

        }


伸缩项属性连写

            ul{

            width: 800px;

            height: 400px;

            border: 1px solid #000;

            margin: 100px auto;

            list-style: none;

            display: flex;

        }

        ul>li{

            width: 200px;

            height: 200px;

            background-color: pink;

            text-align: center;

            line-height: 200px;

            font-size: 35px;

        }

        ul>li:nth-child(1){

            /*

            flex: flex-grow flex-shrink flex-basis;

            默认值:

            flex: 0 1 auto;

            注意点:

            在连写格式中, flex-shrink flex-basis是可以省略的

            */

            /*flex: 1 1 200px;*/

            flex: 1;

        }

        ul>li:nth-child(2){

            background-color: skyblue;

            /*flex: 1 2 200px;*/

            flex: 2;

        }

        ul>li:nth-child(3){

            background-color: yellow;

            /*flex: 1 3 200px;*/

            flex: 3;

        }

你可能感兴趣的:(HTML-CSS:伸缩布局)