最新回答 / 前端技术qqz
你把.right{width:300px;height:500px;background:#993366;position:absolute;right:o;top:o}改为.right{width:300px;height:500px;background:#993366;position:absolute;right:0;top:0}
2016-01-24
.top{ height:40px;
background-color:#ccc;
margin:0 auto;
}
.main{ background-color:red;
position:relative;
width: 100%;}
.left{ position: absolute;
top:0;
left:0;
width:200px;
height: 500px;
background-color: blue;
}
.right{ margin-left:206px;
height:500px;
background-color:green;
}
background-color:#ccc;
margin:0 auto;
}
.main{ background-color:red;
position:relative;
width: 100%;}
.left{ position: absolute;
top:0;
left:0;
width:200px;
height: 500px;
background-color: blue;
}
.right{ margin-left:206px;
height:500px;
background-color:green;
}
已采纳回答 / 韩世林
clear:both是用来清除紧邻后面元素的浮动,如前一个div左浮动了,后面的div就会与其同行,假如你不想两个div同行显示,想让后面的div单独一行,你就可以用clear:both而overflow:hidden还需要加上一句width:100%方可实现浮动清除,它一般用于清除父元素和子元素之间的浮动影响。这样看来,第一个清除浮动方法可看做是兄弟元素之间浮动的清除。
2016-01-22
设置width100%和margin-left是关键。
.top{width:100%; height:30px;background:#ccc;}
.main{width:100%;height:400px;background:red;}
.left{ width:200px;height:400px;position:absolute;left:0;top:30;background:blue;}
.right{height:400px;width:100%;margin-left:210px;float:left;top:30;background:green;}
.top{width:100%; height:30px;background:#ccc;}
.main{width:100%;height:400px;background:red;}
.left{ width:200px;height:400px;position:absolute;left:0;top:30;background:blue;}
.right{height:400px;width:100%;margin-left:210px;float:left;top:30;background:green;}