.lf{width:300px;height:300px;background:blue;margin-left:520px;}
.right {
width:120px;
height:500px;
background:#690;
float:right;
clear:both;
}
.right {
width:120px;
height:500px;
background:#690;
float:right;
clear:both;
}
最新回答 / 慕少7532173
给父元素设置overflow:hidden并不是为了溢出隐藏,而是为了触发BFC。这里写一下触发BFC的条件:1. float不为none; 2.position不为relative/static; 3.overflow为hidden/auto/scroll; 4.display为table-cell/table-caption/inline-block . 当有些情况下需要触发BFC又不能设置溢出隐藏overflow:hidden时,可以考虑使用其他属性来触发BFC。
2016-08-24