需求:有时候,当页面内容较短,撑不开浏览器高度,但是又希望footer能在窗口最低端。
思路:footer的父层的最小高度是100%,footer设置成相对于父层位置绝对(absolute)置底(bottom:0),父层内要预留footer的高度。
html代码:
XML/HTML Code复制内容到剪贴板
-
- <div id="wapper">
-
- <div id="main-content">
- </div>
-
- <div id="footer">
- </div>
- </div>
CSS如下:
CSS Code复制内容到剪贴板
- #wapper{
- position: relative;
- height: auto;
- min-height: 100%
- }
- #footer{
- position: absolute; bottombottom: 0;
- left:0;
- height: 60px;
- }
- #main-content{
- padding-bottom: 60px;
- }
这时候,其它浏览器上都能正常显示了,但是IE 6要另外处理:
CSS Code复制内容到剪贴板
- <!--[if IE 6]->
- <style>
- #wapper{height:100%;}
- </style>
- <![endif]-->
以上这篇html的footer置于页面最底部的简单实现方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。