布局
by zicai
HTML
<div class="top">
top
</div>
<div class="left">
left
</div>
<div class="right">
right
</div>
CSS
body,html{height: 100%;}
.top{
height: 60px;
background:red;
}
.left{
width: 200px;
height: 100%;
background:blue;
}
.right{
height: 100%;
background:#333;
margin-left: 200px;
float:left;
}