A div central "corpo", não está obedecendo o comando "auto" em
que ela deveria se ajustar ao tamanho da div contida nela.
<html> <head> <title>Untitled Document</title> </head> <style type="text/css"> #corpo {margin-left: auto; margin-right: auto; width:560px; height: auto; background-color: #603; height: auto; margin-bottom: 30px;} #div1 { float: left; width: 150px; height: 350px; margin: 10px; background-color: #396;} #div2 { float: left; width: 200px; height: 450PX; margin: 10px; background-color: #066; } #div3 {float: left; width: 150px; height: 430px; margin: 10px; background-color: #9C6;} #rodape {width: 100%; height: 140px; background-color: #036;} </style> <body> <div id="corpo"> <div id="div1"></div> <div id="div2"></div> <div id="div3"></div> </div> <div id="rodape">###</div> </body> </html>
Um forte abraçoa!