flex布局

在这里插入图片描述

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=deice-width, initial-scale=1.0">
    <title>flex</title>
    <style>
        * {
            margin: 0;
            padding: 0;
        }

        #wrap {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            margin: auto;
            width: 400px;
            height: 400px;
            background: wheat;
            border: 1px solid black;
            display: flex;
            /* flex-direction: row; */
            justify-content: flex-start;
            align-items: center;
            /* flex-wrap: wrap; */
            align-content: flex-start;
            flex-flow: row wrap;
            /* display: -webkit-box;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -webkit-box-pack: start;
            -webkit-box-align: center; */
        }

        .item {
            width: 50px;
            height: 50px;
            background: ghostwhite;
            text-align: center;
            line-height: 50px;
            /* flex-grow: 1; */
            /* -webkit-box-flex: 1; */
        }

        #wrap>.item:nth-child(1) {
            /* -webkit-box-flex: 4; */
            /* flex-grow: 4; */
            order: 3;
            align-self: flex-end;
        }

        #wrap>.item:nth-child(2) {
            order: 1;
        }

        #wrap>.item:nth-child(3) {
            order: 5;
        }

        #wrap>.item:nth-child(4) {
            order: 2;
        }

        #wrap>.item:nth-child(5) {
            order: 4;
        }
    </style>
</head>
<body>
    <div id="wrap">
        <div class="item">1</div>
        <div class="item">2</div>
        <div class="item">3</div>
        <div class="item">4</div>
        <div class="item">5</div>
    </div>
</body>
</html>
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值