CSS Push Div to bottom of page
css, html
Solution
#footer { position: fixed; bottom: 0; }
Problem
I want the footer to always be at the bottom of the page even if the content doesn't push it all the way down. How can I make it just stay at the bottom of the page?