我只想要横跨整个页面底部的水平div(大约50像素高)。怎么样?
答案 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中工作。