窗口底部的div,而不是页面

lov*_*iji 9 html javascript css jquery

我想要一个div元素,在窗口的底部.喜欢老facebook.com底页的div.或者像初始facebook.com的聊天div

rah*_*hul 15

你可以用position: fixed; bottom: 0px.但是在IE6中不起作用.

<style type="text/css">
    #footer { position: fixed; bottom: 0px; }
</style>

<div id="footer">I am at the bottom of the window</div>
Run Code Online (Sandbox Code Playgroud)

  • IE6支持的解决方法也很少.尝试搜索ie-fixed.htc - .htc文件将强制IE了解位置. (2认同)