【问题标题】:Unwanted space beneath footer页脚下方不需要的空间
【发布时间】:2012-10-08 12:58:27
【问题描述】:

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

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

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

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

【问题讨论】:

标签: html css browser footer space


【解决方案1】:

使用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;
}

【讨论】:

  • 不幸的是,这两种解决方案都不起作用!当浏览器在大屏幕上拉伸时,页脚下方仍有空间。
猜你喜欢
  • 2021-03-17
  • 1970-01-01
  • 2018-12-12
  • 1970-01-01
  • 1970-01-01
  • 2014-04-06
  • 2013-05-09
  • 1970-01-01
  • 2015-02-07
相关资源
最近更新 更多