1

我有一个正在处理的页面http://s361608839.websitehome.co.uk/testsite/

基本上,div #footer 应该位于页面底部,因为它位于标记的末尾,并且它也在 #wrapper 之外。

HTML:

 <div id="footer">This footer text should be underneath the white box (at the bottom)</div>

CSS:

#footer{
width: 960px;
margin: 0 auto;
color: #FFF;
}

我尝试将 a 添加clear:both到 CSS 中,因为我认为页面中某处的浮动可能会导致此问题,但它似乎没有做任何事情。

任何帮助表示赞赏。

谢谢

4

1 回答 1

2

将您的#header 位置更改为相对并删除#register 上的'top' 声明,一切都好起来了!

绝对定位会对页面流造成严重破坏,因此在使用时请记住这一点!

于 2012-04-26T23:54:43.280 回答