教育改变生活

标题: 【HTML5:第九章 盒模型相关样式】经典案例-圣杯布局 [打印本页]

作者: 却尘    时间: 2022-1-12 10:58
标题: 【HTML5:第九章 盒模型相关样式】经典案例-圣杯布局
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
    *{
        margin:0;padding:0;
    }
    .container{
        display: flex;
        height: 100vh;
        flex-direction: column;
    }
    header{
        background: #000;
    }
    section{
        flex:1;
        background: pink;
        display: flex;
    }
    footer{
        background: #000;
    }
    .left{
        background: red;
        flex:0 0 100px;
    }
    .center{
        flex:1;
        background: blue;
    }
    .right{
        flex:0 0 100px;
        background: red;
    }
    </style>
</head>
<body>

<div class='container'>

    <header>头部</header>
    <section>
        <div class='left'>左</div>
        <div class='center'>中</div>
        <div class='right'>右</div>
    </section>
    <footer>底部</footer>

</div>

</body>
</html>






欢迎光临 教育改变生活 (http://bbs.goldoar.com/) Powered by Discuz! X3.2