在浏览器底部对齐div

时间:2012-03-27 06:03:54

标签: javascript jquery

参考帖子:Div at the browser bottom

问题图片: http://i.imgur.com/I9vVv.png http://i.stack.imgur.com/jTU5U.png

我使用了所有的方法,这一切都是徒劳的。如果甚至滚动页面,Jquery中是否有任何方法可以在底部放置div?

在此先感谢

1 个答案:

答案 0 :(得分:1)

对于IE6以外的浏览器,使用position: fixed就足够了:

#footer {
    position: fixed !important; /* IE6 hack */
    position: absolute;
    right: 0;
    bottom: 0;
    background: yellow;
}

对于IE6,一般方法是注册scroll事件并动态更改top的{​​{1}}样式属性

#footer