How to push the footer to the bottom of the screen? [duplicate]
Possible Duplicates:
How to align footer (div) to the bottom of the page? http://www.google.com/#q=bottom+footer+site:stackoverflow.com
How to push the footer to the bottom of the page ?
I tried many ways but nothing works :)
My Html
<div id="header">
.
.
</div>
<div id="container">
.
.
</div>
<div id="footer">
<div id="footerContent">
.
.
</div>
</div>
http://www.doturbo.com/test/404.html
http://www.doturbo.com/test/contact.html
I found the method linked below to be the most effective for my personal needs:
http://ryanfait.com/resources/footer-stick-to-bottom-of-page/
position: absolute;
bottom: 0px;
精彩评论