2014 UPDATE : Die moderne Art, dieses Problem zu lösen, besteht darin, dass verwenden Sie die flexbox
CSS-Modell . Sie wird von allen gängigen Browsern und IE11+ unterstützt.
2012: Der richtige Weg, dies mit CSS allein zu tun, ist die Verwendung von display: table
y display: table-row
. Diese sind unterstützt von allen wichtigen Browsern , beginnend mit IE8. Dies ist no Verwendung von Tabellen für die Anzeige. Sie werden divs verwenden:
html, body {
height: 100%;
margin: 0;
}
.wrapper {
display: table;
height: 100%;
width: 100%;
background: yellow; /* just to make sure nothing bleeds */
}
.header {
display: table-row;
background: gray;
}
.content {
display: table-row; /* height is dynamic, and will expand... */
height: 100%; /* ...as content is added (won't scroll) */
background: turquoise;
}
.footer {
display: table-row;
background: lightgray;
}
<div class="wrapper">
<div class="header">
<h1>Header</h1>
<p>Header of variable height</p>
</div>
<div class="content">
<h2>Content that expands in height dynamically to adjust for new content</h2>
Content height will initially be the remaining
height in its container (<code>.wrapper</code>).
<!-- p style="font-size: 4000%">Tall content</p -->
</div>
<div class="footer">
<h3>Sticky footer</h3>
<p>Footer of variable height</p>
</div>
</div>
Das war's. Die Divs sind umbrochen, wie Sie erwarten.