Hallo !
Ich habe den folgenden Code :
Dazu folgendes CSS
Im div text soll der Inhalt rein. Unten ist der Footer fixiert. Ich hätte nun gerne, dass das div text die volle restliche Höhe einnimmt. Wie kann ich das machen ?
Ich habe den folgenden Code :
PHP:
<div id="content">
<div id="header"></div>
<div id="menu"></div>
<div class="wrap">
<div id="text"></div>
</div>
<div id="splitter"></div>
</div>
<div id="footer"></div>
Dazu folgendes CSS
PHP:
#content{
height: auto !important; margin: 0 auto -120px; min-height: 100%;
}
#header {
background-image: url(....);
border-bottom: 1px solid #999999; overflow: hidden;
}
#menu{
background-color: #0171AB; border-bottom: 5px solid #F1F1F1; height: 68px; overflow: hidden;}
.wrap { margin-left: auto; margin-right: auto; width: 980px;}
#text {
margin-left: auto; margin-right: auto; overflow: hidden; padding-top: 10px; width: 980px;
margin-bottom: 15px;
}
#footer, #splitter{
clear: both;
height: 119px; margin: 0 auto;}
#footer { background: none repeat scroll 0 0 white; border-top: 1px solid #E4E4E4; bottom: 0;
text-align: center; width: 980px;}
Im div text soll der Inhalt rein. Unten ist der Footer fixiert. Ich hätte nun gerne, dass das div text die volle restliche Höhe einnimmt. Wie kann ich das machen ?