il mio problema è gestire le altezze in che senso:
se ho:
codice:
<html>
<style>
body { margin:0; padding:0; }
#madre { margin:0; border:1px solid #000000; background:#FF0000; padding:1px; margin:50px 0 0 0; width:900px;}
#figlio1 {border:0px solid #000000; background:#cccccc; width:600px; float:left;}
#figlio2 {border:0px solid #000000; background:#cccccc; width:300px; float: right;}
</style>
<body>
<div id="madre">
<div id="figlio1">
</div>
<div id="figlio2">
aaaaa
</div>
</div>
</body>
</html>
perchè se si allarga il div figlio non si allarga anche il div madre???
thanksss!!!