为什么页脚后面有这么多空白?

时间:2012-08-29 20:30:38

标签: html css wordpress sticky-footer

查看问题的最简单方法是在网站上:http://marketsay.com/

我有底部区域(蓝色),我想成为一个粘性页脚。我以为我在笔记本电脑上工作了,但是现在我在宽屏显示器上看它,下面有很多空间。

我已经浏览了文档和CSS并且无法找出原因,你能看到我遗漏的任何内容吗?

1 个答案:

答案 0 :(得分:2)

您需要将以下内容添加到您已有的内容中:

#wrap {
    position:relative;
}

#inner {
    margin-bottom:142px;
}

.disclaimer {
    position:fixed;
    bottom:0;
    width:100%;
}