.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;}
.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元素..
如果你想让这个#demo里的一个div#sub相对于#demo定位在右上角的某个地方,应该给#demo相对定位,#sub绝对定位。
absolute是相对于自己最近的父元素来定位的,如果你不给#demo相对定位,那么#sub的绝对定位就是相对于body来定位的。
relative是相对于自己来定位的,例如:#demo{position:relative;top:-50px;},这时#demo会在相对于它原来的位置上移50px。
absolute是相对于自己最近的父元素来定位的,如果你不给#demo相对定位,那么#sub的绝对定位就是相对于body来定位的。
relative是相对于自己来定位的,例如:#demo{position:relative;top:-50px;},这时#demo会在相对于它原来的位置上移50px。
.top{height:100px;background:blue;}
.main{height:600px;background:red;}
.left{width:200px;float:left;background:black;height:600px;}
.right{position:absolute;background:yellow;height:600px;margin-left:210px;width:80%;}
.foot{height:100px;background:blue;}
这样也行啊
.main{height:600px;background:red;}
.left{width:200px;float:left;background:black;height:600px;}
.right{position:absolute;background:yellow;height:600px;margin-left:210px;width:80%;}
.foot{height:100px;background:blue;}
这样也行啊
标准答案如下:
.top{ height:100px; background:#ccc}
.main{ height:500px; background:red; position:relative;}
.left{ width:200px; height:500px; background:blue; position:absolute; left:0; top:0;}
.right{ margin-left:210px; height:500px; background:#9C9;}
.foot{ height:50px; background:#F63;}
.top{ height:100px; background:#ccc}
.main{ height:500px; background:red; position:relative;}
.left{ width:200px; height:500px; background:blue; position:absolute; left:0; top:0;}
.right{ margin-left:210px; height:500px; background:#9C9;}
.foot{ height:50px; background:#F63;}