0

我的网站页脚有问题。应该是,它在页面内容之后呈现,但是当页面内容小于浏览器的高度时,在页面中间看到它很烦人。

我正在纠正这种行为,手动将页脚设置为position:absolute; bottom:0,但是这样做会在内容大于浏览器高度时破坏页脚。有什么办法可以自动化吗?

内容只是一个 div,没有附加样式,通常页脚是position:relative; bottom:0. 该网站可以在这里看到:http: //vestibulandos.oplex.com.br

谢谢。

4

2 回答 2

4

看看http://www.cssstickyfooter.com/

于 2012-08-13T13:12:14.857 回答
1
.wrapper {
margin: 0 auto -60px; /* the bottom margin is the negative value of the footer's height */
 }
 
/* FOOTER BOTTOM --------------------------------------------------------*/
 
.footer, .push {
    height: 60px; /* .push must be the same height as .footer */
}
 
#footer{
    position: relative;
    width: 100%;
    height: 60px;
}
于 2012-08-14T14:59:59.193 回答