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

让footer始终位于页面的最底部

时间:2015-09-22 16:39:48      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:

http://www.cnblogs.com/wudingfeng/archive/2012/06/29/2569997.html

html代码:

技术分享
<div class="container">
<div cass="header"></div>
 
<div class="body"></div>

<div class="footer"></div>
</div>
技术分享

 

第一种情况:footer随着滚动条的滚动而滚动

.container{position:relative;width:100%;min-height:100%;}
.body{padding-bottom:50px;}
.footer{height:50px;position:absolute;bottom:0px;left:0px;}

 

第二种情况:footer始终在其底部固定

.container{position:relative;width:100%;min-height:100%;}
.body{padding-bottom:50px;}
.footer{height:50px;position:fixed;bottom:0px;left:0px;}

 

 注意:

1.千万不能设置.container的高度为100%,否则将无法随滚动条的滚动而滚动.

让footer始终位于页面的最底部

标签:

原文地址:http://www.cnblogs.com/santian/p/4829162.html

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