herrgarnele
Erfahrenes Mitglied
Hallo Gemeinde!
Das Thema ist wohl schon hundertmal durchgekaut worden. Ich habe auch almighty google und die Forensuche ausgiebig bemüht. Aber ich komm einfach nicht dahinter.
In meinem Layout möchte ich, dass der Bereich #content bis zum Ende des Browserfensters angezeigt wird:
So wie ich das verstanden habe, sollte es der gefettete Teil bei #content tun. Tut er aber nicht
Das Thema ist wohl schon hundertmal durchgekaut worden. Ich habe auch almighty google und die Forensuche ausgiebig bemüht. Aber ich komm einfach nicht dahinter.
In meinem Layout möchte ich, dass der Bereich #content bis zum Ende des Browserfensters angezeigt wird:
Code:
<div id="wrapper">
<div id="left">Left column</div>
<div id="right">Right column</div>
<div id="center">
<div id="content">
Content
</div>
</div>
</div>
Code:
*{
margin:0;
padding:0;
border:0;
}
html, body {
background:#e7e7e7;
height:100%;
text-align:center;
}
#wrapper{
width:945px;
margin:0 auto;
position:relative;
min-height:100%;
height:auto !important;
height:100%;
}
#left{
background:#0f0;
width:177px;
height:200px;
position:absolute;
left:0;
top:169px;
}
#right{
background:#0f0;
width:177px;
height:200px;
position:absolute;
bottom:0;
right:0;
}
#center{
background:#000;
width:591px;
position:relative;
margin:0 177px 0 177px;
}
#content{
background:#f00;
width:591px;
min-height:100%;
height:auto !important;
height:100%;
}