right是无法只适应填满剩余的高度和宽度的,必须设定right的高度,让right的高度大于left的的高度。
#main{
width:100%;
height:60px;
float:left;
background:#0F0;
}
#left{
height:50px;
width:200px;
background:#90F;
float:left;
}
#right{
width:100%;
background:#FF0;
height:200px;
}