求大神帮忙看看哪里错了,小弟新手尽力了。。
<style type="text/css">
body{ margin:0; padding:0; font-size:30px; color:#fff}
.top{height:100px;background:#ccc;}
.main{width:600px;height:500px;}
.left{width:200px;height:500px;background:blue;float:left;}
.right{height:500px;background:green;float:right;}
.foot{height:50px;background:orange;margin:0 auto;}
</style>
</head>
<body>
<div class="top">top</div>
<div class="main">
<div class="right">right</div>
<div class="left">left</div>
</div>
<div class="foot">foot</div>
</body>
</html>