.wrap{width:1000px;}
.main{background-color:red;position: relative;width:100%;height:500px;}
.left{background-color:blue;position: absolute;left:0;top:0;width:200px;height:500px;}
.right{background: darkolivegreen;position: absolute0;margin-left:210px;height: 500px;width: 79%;}
外面包裹wrap,不然右边只会出现一小条
.main{background-color:red;position: relative;width:100%;height:500px;}
.left{background-color:blue;position: absolute;left:0;top:0;width:200px;height:500px;}
.right{background: darkolivegreen;position: absolute0;margin-left:210px;height: 500px;width: 79%;}
外面包裹wrap,不然右边只会出现一小条
最新回答 / Mr_Hui
body{ margin:0; padding:0; font-size:30px; color:#fff}.top{width:100%;height:80px;background:#ccc;}.main{width:600px;height:600px;margin:0 auto; background:red;position:relative;}.left{width:200px;height:600px;position:absolute;left:0;top:0; background:bl...
2015-11-22
已采纳回答 / 李晓健
这个margin 是用在了中间那块上,这里margin 一共4个值 分别对应 上 右 下 左 ;对应到他给的值就是 上:0;右310px; 下:0; 左:210px; 因为他是左中右的布局,所以上下不用管,都是0,这个没有问题。说一下他的左右的值是怎么算出来的。先看左边的,他给的值是210px,再看一下他左边区域div的宽度,200px,而且是用定位放到了左边,因为他们是在一行上的,左边区域就会盖到中间区域上,所以中间的区域要把左边的区域的宽度空出来,也就是至少要空出200px 左边才能正好显示。他给...
2015-11-21