目录

style clear 属性

示例

禁止元素中文本左侧的浮动对象:

document.getElementById("demo").style.clear = "left";
亲自试一试 »

描述

clear 属性设置或返回元素相对于浮动对象的位置。


浏览器支持

Property
clear Yes Yes Yes Yes Yes

语法

返回明确的属性:

object.style.clear

设置清除属性:

object.style.clear = "none|left|right|both|initial|inherit"

属性值

Value Description
none Allows floating objects on both sides of the element. This is default
left No floating objects allowed on the left side of the element
right No floating objects allowed on the right side of the element
both No floating objects allowed on either the left or right side of the element
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit


技术细节

默认值: 没有任何
返回值: 一个字符串,表示元素相对于浮动对象的位置
CSS版本 CSS1

更多示例

示例

返回明确的属性:

alert(document.getElementById("demo").style.clear);
亲自试一试 »

相关页面

CSS教程:CSS 浮动

CSS 参考:清晰的属性