0

我在这个网站上遇到了粘滞页脚问题:

http://dev.epicwebdesign.ca/allshipsrise/events/

出于某种原因,#page div 将自身限制在标题中。

我想不通。所有标签都已关闭,等等。W3C 一致性检查器只抱怨“首字母缩略词元素已过时。请改用 abbr 元素。”。那是wordpress的做法。

它类似于页脚不在页面底部但是我已经明确设置:都在页脚上。

当页面太高时,页脚很好。即使不是,我也需要它在底部。

有几个潜在的问题,主要是为了弥补真正的问题。(未设置身高:100%)现在都整理好了。

4

4 回答 4

8

在您的正文中将高度设置为 100%,您的页脚将一直显示到页面末尾:)

于 2012-10-23T06:45:59.333 回答
1

删除position:relative可以解决问题。只需使用 firebug 删除此元素,您就会得到结果。

于 2012-10-23T07:07:06.133 回答
0

你有几个问题。与element.style您一起使用绝对定位并将其提高 85 像素。将其更改为position="relative"并删除该bottom属性。

这:

element.style {
    bottom: 85px;
    position: absolute;
}

变成:

element.style {
    bottom: 0px;
    position: relative;
}
于 2012-10-23T06:48:49.927 回答
0

或者另一种解决方法是将其更改margin-top:为 100%

于 2012-10-23T06:53:26.837 回答