码迷,mamicode.com
首页 > 其他好文 > 详细

圣杯布局

时间:2020-05-26 20:33:35      阅读:64      评论:0      收藏:0      [点我收藏+]

标签:charset   play   enter   containe   foo   nta   ade   splay   padding   

<!DOCTYPE html>
<html lang="en">
<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>

圣杯布局

标签:charset   play   enter   containe   foo   nta   ade   splay   padding   

原文地址:https://www.cnblogs.com/1609359841qq/p/12967822.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!