Warum steht div_3 im Firefox nicht oben?
Quelltext:
...
<style type="text/css">
.left
{
float:left;
border:3px solid red;
margin:10px;
background:yellow;
width:20em;
}
.right
{
clear:right;
float:right;
border:3px solid blue;
margin:10px;
background:yellow;
width:20em;
}
</style>
</head>
<body>
<div class=right>
div_1<br>
...
</div>
<div class=right>
div_2<br>
...
</div>
<div class=left>
div_3<br>
...
</div>
</body>
</html>
Danke
Shenga