Chris: 2 float divs in div -> Höhe ist falsch :(

Beitrag lesen

Hi,

ich will gerne 2 Spalten als Content haben:

  
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
<html xmlns="http://www.w3.org/1999/xhtml">  
<head>  
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />  
<title>Unbenanntes Dokument</title>  
<style type="text/css">  
<!--  
#Content {  
 width:600px;  
 background-color: #00FF00;  
 min-height:200px;  
 height:200px;  
 margin      : 0px 0px 0px 0px;  
 padding      : 0px 0px 0px 0px;  
}  
  
#ContentLinks {  
 float:left;  
 width:250px;  
 background-color: #FFFF00;  
 margin      : 0px 0px 0px 0px;  
 padding      : 5px 0px 0px 5px;  
}  
  
#ContentRechts {  
 float:right;  
 width:250px;  
 background-color: #99FFFF;  
 margin      : 0px 0px 0px 0px;  
 padding      : 5px 0px 0px 5px;  
}  
-->  
</style>  
</head>  
  
<body>  
<div id="Content">  
 <div id="ContentLinks">Links</div>  
 <div id="ContentRechts">Rechts<br />  
 <br /> <br />  <br /> <br /> <br /> <br /> <br /> <br /><br /> <br />  
 langer Test usw.<br /> <br /> <br /> <br /> <br /> <br />  
 Noch länger</div>  
  
</div>  
</body>  
</html>  
  

Im IE funktioniert es, in Opera und FF ist die grüne Box niedriger als die blaue, die grüne soll sich aber automatisch mit vergrößern. Wie schaffe ich das denn?

Danke schon mal.
Bye, Chris