无论用户如何滚动,如何创建始终位于页面底部的水平浮动div?

时间:2010-03-05 20:25:52

标签: css templates

我只想要横跨整个页面底部的水平div(大约50像素高)。怎么样?

2 个答案:

答案 0 :(得分:3)

使用CSS中的position: fixed功能。

.footer {
    position: fixed; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    height: 50px; 
}

然而,这不适用于IE6; check this link for a workaround

答案 1 :(得分:0)

看一下位置:固定;我以前用它来做这件事,但你会遇到IE的跨浏览器错误。我最终使用了一个CSS _expression()hack,以便在IE6 / 7中工作。