.top{width:100%;height:100px;background:gray;}
.main{height:500px;position:relative;}
.left{height:500px;width:200px;background:blue;float:left;}
.right{height:500px;background:green;position:absolute;margin-left:200px ;}
.foot{width:100%;height:30px;background:orange;}
.main{height:500px;position:relative;}
.left{height:500px;width:200px;background:blue;float:left;}
.right{height:500px;background:green;position:absolute;margin-left:200px ;}
.foot{width:100%;height:30px;background:orange;}
已采纳回答 / 慕粉1617456504
float:left;float:right分别控制相应的元素,悬浮在父元素的左边和右边。如果不添加float元素的话,由于div是块级元素,两个div会靠左上下并排在一起,而不是左右。
2017-03-21
.top{width:100%;height:100px;;background:gray;}
.main{width:100%;height:900px;;background:red;}
.left{width:200px;height:900px;;background:blue;float:left }
.right{width:85%;height:900px;float:right;;background:yellow;float:right;}
.foot{width:100%;;background:gray;clear:both;}
.main{width:100%;height:900px;;background:red;}
.left{width:200px;height:900px;;background:blue;float:left }
.right{width:85%;height:900px;float:right;;background:yellow;float:right;}
.foot{width:100%;;background:gray;clear:both;}
不改字体这样不就行啦
.left{ width:50px; height:600px; background:#ccc; position:absolute;left:0; top:0;font-size:0.5em;}
.main{ height:600px;margin:0 90px 0 60px; background:#9CF;font-size:0.5em;}
.right{ height:600px; width:80px; position:absolute; top:0;right:0; background:#FCC;font-size:0.5em;}
.left{ width:50px; height:600px; background:#ccc; position:absolute;left:0; top:0;font-size:0.5em;}
.main{ height:600px;margin:0 90px 0 60px; background:#9CF;font-size:0.5em;}
.right{ height:600px; width:80px; position:absolute; top:0;right:0; background:#FCC;font-size:0.5em;}
已采纳回答 / qq_天天_66
其实你的已经自适应了,父级容器的宽为800px,左侧为200px ,margin占了10px ,你的right的宽没有设置,但是他相当于剩下的100%,也就是590px,所以他会占宽590px的,你可以用盒子看一下
2017-03-19
.top{height:100px;background:grey;}
.main{height:500px;background:red;}
.left{width:200px;height:500px;background:blue;float:left;position:relative}
.right{width:100%;height:500px;background:green;position:absolute;float:right;margin-left:210px;}
.foot{width:100%;background:yellow;}正确答案在此!
.main{height:500px;background:red;}
.left{width:200px;height:500px;background:blue;float:left;position:relative}
.right{width:100%;height:500px;background:green;position:absolute;float:right;margin-left:210px;}
.foot{width:100%;background:yellow;}正确答案在此!
top{width:100%; height:50px;background:gray;}
.main{width:100%; height:300px;background:red;}
.left{float:left;width:200px;height:300px;background:blue;}
.right{float:left;margin-left:210px;width:100%;height:300px;background:green}
.foot{width:100%; height:50px;background:#369;}
.main{width:100%; height:300px;background:red;}
.left{float:left;width:200px;height:300px;background:blue;}
.right{float:left;margin-left:210px;width:100%;height:300px;background:green}
.foot{width:100%; height:50px;background:#369;}
另:relative 不脱离文档流,absolute 脱离文档流。也就是说:relative 的元素尽管表面上看到它偏离了原来的位置,但它实际上在文档流中还是没变。absolute的元素不仅位置改变了,同时也脱离了文档流。
position:relative日常应用的时候一般是设置给position:absolute;的父层的,父层position:relative; 子层position:absolute;的话, 就是依照父层的边界进行定位的, 不然position:absolute 会逐层向上寻找设置了position:relative的元素边界, 直到body元素..
position:relative日常应用的时候一般是设置给position:absolute;的父层的,父层position:relative; 子层position:absolute;的话, 就是依照父层的边界进行定位的, 不然position:absolute 会逐层向上寻找设置了position:relative的元素边界, 直到body元素..