Hi,
das gleiche Problem habe ich eigentlich auch mit 2 Spalten.
Hier das ganze weiter vereinfacht:
<!doctype html>
<html>
<head>
<title></title>
<style type="text/css">
[code lang=css] body {
max-width:800px;
min-width:400px;
}
.aside {
float:left;
background:blue;
width:100px;
}
.content {
float:left;
background:red;
position:relative;
left:100px;
}
</style>
</head>
<body>
<div class="content">bar</div>
<div class="aside">foo</div>
</body>
</html>[/code]
Die Spalte .aside sollte ganz links im body sein und .content rechts neben .aside.
Die Position von .content stimmt jetzt, durch position:relative und entsprechenden wert für left.
Nur sehe ich keine Möglichkeit .aside ganz links im body zu positionieren, ohne die Breite von .content zu wissen.
Ich nehm dann einfach Tabellen :P
~dave