Thomas J.: Nachtrag

Beitrag lesen

Ich nochmal

Mozilla zeigt es standardkonform an, Opera 6 auch, Opera 7 dagegen nicht.

Um für diese drei eine einheitlich Darstellung zu erreichen, tut's z.B.:

<style type="text/css">
<!--
html, body {margin:0; padding:0;}
#divlinks {width:30%;float:left; background:white}
#divrechts {width:100%; height:300px; background:green;}
-->
</style>
</head>
<body>
<div id="divrechts">
 <div id="divlinks">
  Das steht links oben.
 </div>
 Und dieser Text<br>
 umfließt die weiße Box.
</div>

Thomas J.