让footer始终位于页面的最底部不随滚动而滚动

  发布时间:2014-07-28 16:26:14   作者:佚名   我要评论
本节主要介绍了如何让footer始终位于页面的最底部不随滚动而滚动,此效果在网页中非常实用,建议大家好好学习哦
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%,否则将无法随滚动条的滚动而滚动.

相关文章

最新评论