CSS Sticky Footers with Unknown Height
http://pixelsvsbytes.com/blog/2011/09/sticky-css-footers-the-flexible-way/ Summary: For a site with a header, content area, and footer: Set html, body {height: 100%;} Set your body (or a wrapper div) to display: table; width: 100%; height: 100%; Set your header, footer, and content area to display: table-row;. Give your header and footer height: 1px;, and give your content area height: auto; … Read more