0
My CSS CODE

footer {
        background-color: #242424;
        bottom: 0;
        clear: both;
        color: #727272;
        height: 210px;
        left: 0;
        line-height: 20px;
        position: absolute;
        width: 100%;
        z-index: 1;
    }

我的 HTML 代码

 <footer></footer>

这是我的网站

你可以看到中间的页脚栏。为什么我使用了正确的 CSS ???任何帮助,将不胜感激 ?

4

3 回答 3

1

用于position: relative在主体内容下方显示页脚或position: fixed将其粘贴在页面底部。

于 2012-12-15T07:52:15.393 回答
1

使用 position: relative 代替 position: absolute;

我看到你使用了 min-height: 2000px; .请使用它,因为您的内容经过了这一点

 body {
        background-color: #FFFFFF;
        font-size: 14px;
        margin: 0 auto;
        min-height: 2000px;
        width: 980px;
    }
于 2012-12-15T07:56:38.417 回答
1

消除

min-height: 2000px;

从身体

于 2012-12-15T07:56:41.950 回答