首页 > Web开发 > 详细

css布局------上下高度固定,中间高度自适应容器(容器高度不定)

时间:2019-03-02 22:42:27      阅读:601      评论:0      收藏:0      [点我收藏+]

HTML

<body>
<div class="container">
<div class="header"></div>
<div class="body"></div>
<div class="footer"></div>
</div>
</body>

CSS

body,html {
  height:100%;
}
/*方法1:绝对定位实现*/
.container {
box-sizing: border-box;
position: relative;
min-height: 100%;
padding: 100px 0;
background-color: blue;
}
.header {
position: absolute;
top: 0;
width: 100%;
height: 100px;
background-color: red;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
height: 100px;
background-color: red;
}
/*方法2:弹性布局实现*/
.container {
height: 100%;
display: flex;
flex-direction: column;
}
.body {
flex: 1 1 auto;
background-color: blue;
}
.header, .footer {
height: 100px;
flex: 0 0 auto;
background-color: red;
}

css布局------上下高度固定,中间高度自适应容器(容器高度不定)

原文:https://www.cnblogs.com/qddyh/p/10463142.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!