如何实现css上中下布局,高度不足,footer固定在底部,如出现滚动条,footer和body部分一并向下滚动?
如何实现css上中下布局,高度不足时,footer固定在底部,如出现滚动条(高度比较大了),footer和body部分一并向下滚动?
网上找了一段,可以固定在底部,但是当body高度超过一屏时,footer 并不会出现在最下面
<div class="wapper xxy-zh">
<div class="header">
上、中、下布局案例
</div>
<div class="content">
body 部分
</div>
<div class="footer">
Copyright © 2014 -2016 粤 ICP 备 14052360 号
</div>
</div>
.wapper{
background: #f8f8f8;
/*position: relative;*/
height: auto;
min-height: 100%;
background-color: #fff;
}
.header{
height: 100px;
background-color: red;
}
.content{
/*主要代码应该是这句*/
padding-bottom: 81px;/*footer 的高度*/
}
.footer{
height: 60px;
line-height: 60px;
text-align: center;
font-size: 12px;
border-top: 1px solid #d8dfe7;
bottom: 0;
left: 0;
padding: 10px 20px;
position: absolute;
right: 0;
background: #fff;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(8)
……就是把footer放进content里?
https://codepen.io/jackpan/pe...
footer可以fix
谢谢各位小伙伴,原来之前在精简代码的的时候把主句注释掉了——之前发现可以不要,但是现在又必须要
这个很简单,肯定好,不好接着找我
看看这个,不知道是不是你想要的,https://blog.csdn.net/u012076...
https://codepen.io/jx915/pen/...
bootstrap 的实例精选里面就有这种布局