clear版本:CSS1 兼容性:IE4+ NS4+ 继承性:无
语法:
clear : none | left | right | both
取值:
none | : | 默认值。允许两边都可以有浮动对象 |
left | : | 不允许左边有浮动对象 |
right | : | 不允许右边有浮动对象 |
both | : | 不允许有浮动对象 |
说明:
该属性的值指出了不允许有浮动对象的边。请参阅
float 属性。
此属性对于
currentStyle 对象而言是只读的。对于其他对象而言是可读写的。
对应的脚本特性为
clear 。
示例:
div { clear : left }
img { float: right }