blob: 33ce7ccadb34b1bcd1aedf09a3e0649008f995d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
---
title: <hr>
slug: Web/HTML/Element/hr
tags:
- Element
- HTML
- HTML grouping content
- Reference
- 元素
- 参考
translation_of: Web/HTML/Element/hr
---
<div>{{HTMLRef}}</div>
<p><strong>HTML <code><hr></code> 元素</strong>表示段落级元素之间的主题转换(例如,一个故事中的场景的改变,或一个章节的主题的改变)。</p>
<p>在 HTML 的早期版本中,它是一个水平线。现在它仍能在可视化浏览器中表现为水平线,但目前被定义为语义上的,而不是表现层面上。所以如果想画一条横线,请使用适当的 css 样式来修饰。</p>
<div>{{EmbedInteractiveExample("pages/tabbed/hr.html", "tabbed-shorter")}}</div>
<div class="note">
<p>要更改 <hr> 与段落之间的间隙或样式,请使用 <a href="/en-US/docs/CSS">CSS</a>。</p>
</div>
<ul class="htmlelt">
<li><dfn><a href="/zh-cn/docs/HTML/Content_categories" title="HTML/Content_categories">内容分类</a></dfn> <a href="/en-US/docs/Web/HTML/Content_categories#Flow_content">流式元素</a>.</li>
<li><dfn>允许的内容</dfn>无,是一个 {{Glossary("空元素")}}.</li>
<li><dfn>标签省略</dfn>必须有开始标签,不能有结束标签。</li>
<li><dfn>允许的父元素</dfn> 所有接受<a href="/en-US/docs/Web/HTML/Content_categories#Flow_content">流式元素</a>的元素。</li>
<li><dfn>DOM 接口</dfn> {{domxref("HTMLHRElement")}}</li>
</ul>
<h2 id="属性">属性</h2>
<p>该元素包含<a href="zh-CN/docs/Web/HTML/Global_attributes">全局属性</a></p>
<dl>
<dt>{{htmlattrdef("align")}} {{deprecated_inline}}</dt>
<dd>设置对齐方式。如果没有值,默认值为 <code>left。</code></dd>
<dt>{{htmlattrdef("color")}} {{Non-standard_inline}}</dt>
<dd>使用颜色名或十六进制设置颜色。</dd>
<dt>{{htmlattrdef("noshade")}} {{deprecated_inline}}</dt>
<dd>去除阴影。</dd>
<dt>{{htmlattrdef("size")}} {{deprecated_inline}}</dt>
<dd>使用像素设置高度。</dd>
<dt>{{htmlattrdef("width")}} {{deprecated_inline}}</dt>
<dd>使用像素或者百分比设置宽度。</dd>
</dl>
<h2 id="示例">示例</h2>
<h3 id="HTML">HTML</h3>
<pre class="brush: html notranslate"><code><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></code></pre>
<h3 id="结果">结果</h3>
<p>{{EmbedLiveSample("Example")}}</p>
<h2 id="Specifications" name="Specifications">规范</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">规范</th>
<th scope="col">状态</th>
<th scope="col">备注</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('HTML WHATWG', 'grouping-content.html#the-hr-element', '<hr>')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td>Definition of the <code>hr</code> element</td>
</tr>
<tr>
<td>{{SpecName('HTML WHATWG', 'rendering.html#the-hr-element-0')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td>Suggested default rendering of the <code>hr</code> element</td>
</tr>
<tr>
<td>{{SpecName('HTML5 W3C', 'grouping-content.html#the-hr-element', '<hr>')}}</td>
<td>{{Spec2('HTML5 W3C')}}</td>
<td></td>
</tr>
<tr>
<td>{{SpecName('HTML4.01', 'present/graphics.html#h-15.3', '<hr>')}}</td>
<td>{{Spec2('HTML4.01')}}</td>
<td></td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">浏览器兼容性</h2>
<p>{{Compat("html.elements.hr")}}</p>
<h2 id="相关内容">相关内容</h2>
<ul>
<li>{{HTMLElement('p')}}</li>
</ul>
|