浮动的固比布局

  左边固定宽度div右边随着窗口大小改变大小的div布局

代码如下

* {
    margin: 0;
    padding: 0;
}

#ccc{
	overflow: hidden;
}
#left {
    float: left;
    width: 200px;
    height: 100px;
    background-color: green;
}
#content {
    background-color: orange;
    margin-left: 200px;
  	height: 100px;
  	
  }


	<div id="left">Left sidebar</div>
<div id="content">Main Content</div>

  

posted @ 2017-10-09 09:29  大桥默默学  阅读(169)  评论(0编辑  收藏  举报