Problem mit drei Spalten Layout
Seb Karrt
- css
Guten Abend,
ich habe das gleiche Problem, welches auch Richard Pfaller weiter unten im Forum angesprochen hat. Ich möchte das sich der übergeordnete DIV #container auch der Größe des #left und #right anpasst, und nicht nur des #middle:
div id="header">
</div>
<div id="container">
<div id="left">
</div>
<div id="middle">
</div>
<div id="right">
</div>
</div>
<div id="footer">
</div>
StyleSheet:
#left {
float:left;
width:160px;
}
#right {
float:right;
width:160px;
}
#middle {
margin-left:160px;
width:560px;
}
#footer {
clear:both;
}
Ich hoffe doch das es hierzu eine Lösung gibt... wenn nicht dann ist CSS ganz schön schwach....
Yerf!
Ich hoffe doch das es hierzu eine Lösung gibt... wenn nicht dann ist CSS ganz schön schwach....
Die sache mit dem #footer ist schon mal gut. Wenn man ihn nun auch noch *im* #container reinschreibt sollte es auch funktionieren.
Gruß,
Harlequin