语法:
clear : none | left | right | both
取值:
none : 默认值。允许两边都可以有浮动对象
left : 不允许左边有浮动对象
right : 不允许右边有浮动对象
both : 不允许有浮动对象
例1:
代码: <div style="border: 1px solid black; width: 500px; height: 300px;">
<div style="width: 100px; height: 100px; background-color: red; float: left;">www.czbin.cn</div>
<div style="width: 200px; height: 200px; background-color: blue;">www.czbin.cn</div>
</div>
显示效果:
www.czbin.cn
www.czbin.cn
例2:
代码:<div style="border: 1px solid black; width: 500px; height: 300px;">
<div style="width: 100px; height: 100px; background-color: red; float: left;">www.czbin.cn</div>
<div style="width: 200px; height: 200px; background-color: blue; clear: left;">www.czbin.cn</div>
</div>
显示效果:
www.czbin.cn
www.czbin.cn