HTML5(八)——伸缩布局

基本样式设置

父容器:display: flex;

子元素:justify-content、flex-flow

            /* 设置父容器为伸缩盒子 */

            display: flex;

 

            /* 设置子元素的排列方式 */

            /*  flex-start  让子元素在起始位置排列

                flex-end    让子元素在末尾位置排列

                center      让子元素居中排列

                space-between   让子元素左右对齐父元素开始和结束位置,中间平均分隔 

                space-around    所有子元素左右间隔一样*/

            justify-content: space-around;

 

            /* 设置行/列排列,达到最大宽度换行和倒置顺序 */

            /*  row     行排列

                cloumn  列排列

                nowrap  不换行

                wrap    换行

                row-reverse 行排列并倒置顺序

                cloumn-reverse  列排列并倒置顺序

                wrap-reverse 换行并倒置顺序*/

            flex-flow:wrap;

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>flex</title>
    <link rel="shortcut icon" href="favicon.ico">
    <style>
        body {
            position: absolute;
            left: 0px;
            right: 0px;
            top: 0px;
            bottom: 0px;
        }
        .box {
            width: 900px;
            height: 900px;
            border: 1px solid rgba(0, 0, 0, 0.3);
            position: relative;
            left: 0px;
            right: 0px;
            top: 0px;
            bottom: 0px;
            margin: auto;

            /* 设置父容器为伸缩盒子 */
            display: flex;

            /* 设置子元素的排列方式 */
            /*  flex-start  让子元素在起始位置排列
                flex-end    让子元素在末尾位置排列
                center      让子元素居中排列
                space-between   让子元素左右对齐父元素开始和结束位置,中间平均分隔 
                space-around    所有子元素左右间隔一样*/
            justify-content: space-around;

            /* 设置行/列排列,达到最大宽度换行和倒置顺序 */
            /*  row     行排列
                cloumn  列排列
                nowrap  不换行
                wrap    换行
                row-reverse 行排列并倒置顺序
                cloumn-reverse  列排列并倒置顺序
                wrap-reverse 换行并倒置顺序*/
            flex-flow:wrap;
        }
        .box > div {
            width: 200px;
            height: 200px;
        }
        .box > div:nth-of-type(1) {
            background-color: red;
        }
        .box > div:nth-of-type(2) {
            background-color: green;
        }
        .box > div:nth-of-type(3) {
            background-color: blue;
        }
        .box > div:nth-of-type(4) {
            background-color: orange;
        }
        .box > div:nth-of-type(5) {
            background-color: pink;
        }
    </style> 
</head>

<body>
    <div class="box">
        <div>1</div>
        <div>2</div>
        <div>3</div>
        <div>4</div>
        <div>5</div>
    </div>
</body>

其他属性

flex:比例值       让各子元素按比例宽度填充父容器(经常被用到

 作用对象:子元素

        .box > div {
            width: 200px;
            height: 200px;
        }
        .box > div:nth-of-type(1) {
            background-color: red;
            flex: 2;
        }
        .box > div:nth-of-type(2) {
            background-color: green;
            flex-shrink: 1;
            flex: 3;
        }
        .box > div:nth-of-type(3) {
            background-color: blue;
            flex: 1;
        }
        .box > div:nth-of-type(4) {
            background-color: orange;
            flex: 2;
        }
        .box > div:nth-of-type(5) {
            background-color: pink;
        }

 align-items

子元素在侧轴方向(行排列则侧轴为垂直方向,列排列相反)对齐方式 

align-items: center;        居中排列

属性值:

flex-start               侧轴开始位置

center                   侧轴中间位置

flex-end                侧轴结束位置

baseline               内容基线位置

stretch                  子元素填充侧轴

 

 

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值