I know there are lots of questions asking how to make a sticky footer and 100% min-height main containers. But how can I have multiple sections and make each one 100% min-height, while still pushing the footer below?
I have the following, the sections are fine, 100%, but the footer doesn't get pushed down.
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>test</title>
<style type="text/css" media="all">
html, body, .main-container{height:100%;}
section{min-height: 100%;}
.footer-container{height: 100px;}
</style>
</head>
<body>
<div class="header-container">
<header>
header
</header>
</div>
<div class="main-container">
<section>
section
</section>
<section>
section2
</section>
<section>
section3
</section>
</div>
<div class="footer-container">
<footer>
footer
</footer>
</div>
</body>
</html>
Corresponding jsFiddle: http://jsfiddle.net/S7h8s/