CSS clear 属性

指定段落的左侧或右侧不允许浮动的元素:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <style>
    img {
      float: left;
    }

    p.clear {
      clear: both;
    }
  </style>
</head>
<body>

  <img src="/examples/logocss.gif" width="95" height="84" />
  <p>This is some text. This is some text. This is some text. This is some text. This is some text. This is some text.</p>
  <p class="clear">This is also some text. This is also some text. This is also some text. This is also some text. This is also some text. This is also some text.</p>

</body>
</html>

尝试一下 »


属性定义及使用说明

clear属性指定段落的左侧或右侧不允许浮动的元素。

默认值: none
继承性: no
版本: CSS1
JavaScript 语法: object.style.clear="left"

浏览器支持

表格中的数字表示支持该属性的第一个浏览器版本号。

属性
clear 1.0 5.0 1.0 1.0 6.0

属性值

描述
left 在左侧不允许浮动元素。
right 在右侧不允许浮动元素。
both 在左右两侧均不允许浮动元素。
none 默认值。允许浮动元素出现在两侧。
inherit 规定应该从父元素继承 clear 属性的值。

相关文章

CSS 教程: CSS Float