两栏布局

两栏布局,左边宽度固定,右边自适应

<div id="left">left</div>
<div id="right">right</div>

<style>
#left{
200px;
line-height:50px;
background:green;
float:left;
text-align:center;

}
#right{
margin-left:200px;
line-height:50px;
background:red;
text-align:center;
}
</style>

原文地址:https://www.cnblogs.com/qinxuemei/p/3968976.html