Hi,
Warum nimmst Du nicht statt dessen semantisches Markup und CSS?
Weil heutzutage Layout mehr zählt als Funktion. Das ist nicht nur bei Sportwagen so ;)
Mit welchen Positionierungsmodellen von CSS hast Du Dich bereits beschäftigt?
Damit:
<html><body>
<div style="positione:fixed; top:100px; left:100px; width:120px; background-color:#999999;">
<div style="positione:relative; width:40px; height:120px; background-color:#ff0000;">test test test test test test test test</div>
<div style="positione:absolute; top:0px; left:40px; width:40px; background-color:#00ff00;">test test test test test test test test</div>
<div style="positione:static; left:0px; width:80px; background-color:#0000ff;">test test test test test test test test</div>
test test test test test test test test
</div></body></html>
Ich versteh aber nicht warum der gelbe Div unter und nicht neben dem roten div ist und warum der graue so am Rand klebt...
Gute Nacht