参考帖子:Div at the browser bottom
问题图片: http://i.imgur.com/I9vVv.png http://i.stack.imgur.com/jTU5U.png
我使用了所有的方法,这一切都是徒劳的。如果甚至滚动页面,Jquery中是否有任何方法可以在底部放置div?
在此先感谢
答案 0 :(得分:1)
对于IE6以外的浏览器,使用position: fixed
就足够了:
#footer {
position: fixed !important; /* IE6 hack */
position: absolute;
right: 0;
bottom: 0;
background: yellow;
}
对于IE6,一般方法是注册scroll
事件并动态更改top
的{{1}}样式属性
#footer