页脚下方不需要的空间

时间:2012-10-08 12:58:28

标签: html css browser footer space

当浏览器窗口拉伸一定高度(似乎在大屏幕上)时,我的页脚下方会出现一些不需要的空间。

只有在页面上没有很多内容(高度)时才会发生。

http://yyy.comuf.com/PORTV2/fold.php

我希望页脚始终贴在浏览器窗口的底部,但我不想使用position:fixed;。

1 个答案:

答案 0 :(得分:0)

使用position: absolute;

footer {
    background: none repeat scroll 0 0 #343334;
    border-top: 7px solid #4D4D4F;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    position: absolute;
    width: 100%;
    z-index: 4000;
}