css 弹性盒子

display flex实战

圣杯布局:

    <div class="container">
        <header>
            this is a header
        </header>
        <div class="body">
            <main class="content">content</main>
            <nav class="my-nav">nav</nav>
            <aside class="ads">ads</aside>
        </div>
        <footer>
            this is a footer
        </footer>
    </div>
        * {
            padding: 0;
            margin: 0;
        }

        html,
        body {
            height: 100%;
            width: 100%;
            font-size: 14px;
        }

        .container {
            min-height: 100vh;
            width: 80%;
            margin: auto;
            display: flex;
            flex-direction: column;
        }

        header,
        footer {
            flex: 0.1;
            background-color: antiquewhite;
        }

        .body {
            display: flex;
            flex: 1;
        }

        .content {
            flex: 1;
            background-color: bisque;
        }

        .my-nav,
        .ads {
            flex: 0 0 20em;
            background-color: coral;
        }

        .my-nav {
            /* 导航栏放在最左边 */
            order: -1;
        }

        @media(max-width: 765px){
            .body{
                flex-direction: column;
                flex: 1;
            }
            .my-nav,
            .ads,
            .content {
                flex: auto;
            }
        }

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值