请看看我的代码有什么问题~
<html>
<style type="text/css">
.top{height:100px;background:blue;top:0;margin:0 auto;}
.head{background:#ff7a56;height:100px;width:500px;margin:0 auto;}
.left{width:100px;height:500px;float:left;background:grey;}
.main{height:500px;margin:0 auto;background:pink;top:0;}
.right{width:100px;height:500px;float:right;background:#ededed;}
</style>
<div class="top">
<div class="head"></div>
</div>
<div class="left">啦啦啦</div>
<div class="main">123</div>
<div class="right">456</div>
</html>请问为什么我最右边的分栏“456”会跑到下面去~