--- title:
HTML <hr>
元素表示段落级元素之间的主题转换(例如,一个故事中的场景的改变,或一个章节的主题的改变)。
在 HTML 的早期版本中,它是一个水平线。现在它仍能在可视化浏览器中表现为水平线,但目前被定义为语义上的,而不是表现层面上。所以如果想画一条横线,请使用适当的 css 样式来修饰。
要更改 <hr> 与段落之间的间隙或样式,请使用 CSS。
该元素包含全局属性
left。
<p>
This is the first paragraph of text.
This is the first paragraph of text.
This is the first paragraph of text.
This is the first paragraph of text.
</p>
<hr>
<p>
This is the second paragraph of text.
This is the second paragraph of text.
This is the second paragraph of text.
This is the second paragraph of text.
</p>
{{EmbedLiveSample("Example")}}
规范 | 状态 | 备注 |
---|---|---|
{{SpecName('HTML WHATWG', 'grouping-content.html#the-hr-element', '<hr>')}} | {{Spec2('HTML WHATWG')}} | Definition of the hr element |
{{SpecName('HTML WHATWG', 'rendering.html#the-hr-element-0')}} | {{Spec2('HTML WHATWG')}} | Suggested default rendering of the hr element |
{{SpecName('HTML5 W3C', 'grouping-content.html#the-hr-element', '<hr>')}} | {{Spec2('HTML5 W3C')}} | |
{{SpecName('HTML4.01', 'present/graphics.html#h-15.3', '<hr>')}} | {{Spec2('HTML4.01')}} |
{{Compat("html.elements.hr")}}