salut!

in codul urmator am un div in div. din momentul in care i-am dat float:left div-ului din interior, cel exterior nu se mai redimensioneaza pe inaltime... apare corect in ie, dar nu apare corect in ff si opera. va rog, sugestii...

Cod HTML:
<html>
<head>
<title>New</title>
<style type="text/css">
<!--
#main {
	background-color: #999999;
	padding: 5px;
}
#main #mainLeft {
	width: 100px;
	background-color: #CCCCCC;
	float: left;
}
-->
</style></head>
<body>
<div id="main">
  <div id="mainLeft">Content for  id "mainLeft" Goes Here Content for  id &quot;mainLeft&quot; Goes Here Content for  id &quot;mainLeft&quot; Goes Here Content for  id &quot;mainLeft&quot; Goes Here</div>
</div>
</body>
</html>