Make div stay at bottom of page's content all the time even when there are scrollbars

The Solution to Make div stay at bottom of page's content all the time even when there are scrollbars is


This is precisely what position: fixed was designed for:

#footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}

Here's the fiddle: http://jsfiddle.net/uw8f9/

~ Answered on 2012-01-11 18:45:37


Most Viewed Questions: