HTML <hr> 标签的 align 属性

HTML <hr> 标签

实例

居中对齐的水平线:

  1. <hr align="center" width="50%" />

定义和用法

align 属性规定水平线的水平对齐方式。

注释:除非 width 属性设置为小于 100%,否则 align 属性不会有任何效果。

浏览器支持

虽然不赞成使用 align 属性,但是该属性仍然得到所有主流浏览器的支持。

兼容性注释

在 HTML 4.01 中,不赞成使用 hr 元素的 align 属性;在 XHTML 1.0 Strict DTD 中,不支持 hr 元素的 align 属性。

请使用 CSS 代替。

CSS 语法(IE 和 Opera):<hr style="text-align:right" />

CSS 语法(Firefox、Chrome 以及 Safari):<hr style="margin-right:0" />

CSS 语法(跨浏览器):<hr style="text-align:right;margin-right:0" />

CSS 实例:对齐 hr 元素

  1. <p>This is some text. This is some text. This is some text.</p>
  2. <hr style="width:50%;text-align:left;margin-left:0" />
  3. <p>This is some text. This is some text. This is some text.</p>

在我们的 CSS 教程中,您可以找到更多有关 text-align 属性 的细节。

语法

  1. <hr align="value">

属性值

描述
left 左对齐水平线。
right 右对齐水平线(默认值)。
center 居中对齐水平线。