我有一个正在处理的页面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 中,因为我认为页面中某处的浮动可能会导致此问题,但它似乎没有做任何事情。
任何帮助表示赞赏。
谢谢