Andy: CSS und Vertikales Scrollen

Beitrag lesen

Hi Leute!

Mich treibt ein Problem mit CSS beinahe in den Wahnsinn, ich freue mich über alle Tipps! Also:
Ich baue gerade ein ziemlich verschachteltes Layout zusammen, only mit CSS. Die Anweisungen lauten z.B. wie folgt (es sind alles horizontal nebeneinander liegende Spalten, die letzte ist nach rechts hin "offen"):

#d_eins {position: absolute; top: 211px; left: 0px; width: 37px; height: 100%; margin: 0px; padding: 0px; border: 0px; background: #8DCF66;}

#d_zwei {position: absolute; top: 211px; left: 37px; width: 1px; height: 100%; margin: 0px; padding: 0px; border: 0px; background: #000000;}

#navigation_2 {position: absolute; top: 211px; left: 38px; width: 180px; height: 100%; margin: 0px; padding: 0px; border: 0px; background: #8DCF66;}

#d_vier {position: absolute; top: 211px; left: 218px; width: 1px; height: 100%; margin: 0px; padding: 0px; border: 0px; background: #000000;}

#content {position: absolute; top: 211px; left: 219px; width: 540px; height: 100%; margin: 0px; padding: 0px; border: 0px; background: #8DCF66;}

#d_sechs {position: absolute; top: 211px; left: 759px; width: 1px; height: 100%; margin: 0px; padding: 0px; border: 0px; background: #000000;}

#teaser {height: 100%; margin: 0px 0px 0px 760px; padding: 0px; border: 0px; background: #8DCF66;}

Im HTML-Quellcode rufe ich dann über "DIV ID" das Ganze auf und positioniere die Boxen. Das ist kein Problem - klappt soweit gut. Wenn ich nun aber im Bereich "#content" Texte in die Website fülle, die sehr lang sind, reisst ab etwa 1,5 Bildschirmhöhen die Hintergrundfarbe beim vertikalen Scrollen einfach ab, und das über alle Spalten! Ich habe auch schon anstelle der Befehle "width: 100%" mit "bottom: 0px" gearbeitet. Geht auch nicht.
Wer weiß einen Rat? Tausend Dank ....;-)