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)