目录

CSS clear 属性


示例

<p> 元素被推到左侧浮动元素下方(<p> 元素不允许左侧浮动元素):

img {
  float: left;
}

p.clear {
  clear: left;
}
亲自试一试 »

定义和用法

这个clear属性控制浮动元素旁边的流程。

这个clear属性指定浮动元素旁边的元素应该发生什么。

提示:另请参阅 float属性。

展示演示❯

默认值: 没有任何
遗传:
可动画: 不。阅读可动画的
版本: CSS1
JavaScript 语法: 对象.style.clear="both"尝试一下

浏览器支持

表中的数字指定完全支持该属性的第一个浏览器版本。

Property
clear 1.0 5.0 1.0 1.0 6.0


CSS 语法

clear: none|left|right|both|initial|inherit;

属性值

Value Description Demo
none Default. The element is not pushed below left or right floated elements Demo ❯
left The element is pushed below left floated elements Demo ❯
right The element is pushed below right floated elements Demo ❯
both The element is pushed below both left and right floated elements Demo ❯
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

相关页面

CSS教程:CSS 浮动

HTML DOM 参考:清晰的属性