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

弹性盒子圣杯布局

时间:2019-06-29 19:34:04      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:lan   charset   foo   div   width   padding   html   view   port   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <link rel="stylesheet" href="./css/index.css">
</head>
<body>
    <header></header>
    <div class="body">
        <nav></nav>
        <section></section>
        <aside></aside>
    </div>
    <footer></footer>
</body>
</html>
*{
    margin: 0;
    padding: 0;
    list-style: none;
}

header,
footer {
    height: 50px;
    background-color: aquamarine;
}

header {
    flex: 0 0 60px;
}

footer {
    flex: 0 0 40px;
}
html {
    height: 100%;
}
body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

nav,
aside {
    flex: 0 0 150px;
}

section {
    flex: 1;
    background-color: blueviolet;
}

 

弹性盒子圣杯布局

标签:lan   charset   foo   div   width   padding   html   view   port   

原文地址:https://www.cnblogs.com/tujw/p/11107466.html

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