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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
|
---
title: <h1>–<h6>:HTML 区域标题元素
slug: Web/HTML/Element/Heading_Elements
tags:
- Element
- HTML
- HTML sections
- Web
- 元素
- 标题
translation_of: Web/HTML/Element/Heading_Elements
---
<p id="Summary"><span class="seoSummary"><strong>HTML <code><h1></code>–<code><h6></code> 标题 (Heading) 元素</strong>呈现了六个不同的级别的标题,<code><h1></code> 级别最高,而 <code><h6></code> 级别最低。</span></p>
<div>{{EmbedInteractiveExample("pages/tabbed/h1-h6.html", "tabbed-standard")}}</div>
<p class="hidden">The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples </a> and send us a pull request.</p>
<table class="properties">
<tbody>
<tr>
<th scope="row"><a href="/zh-CN/docs/Web/HTML/Content_categories">内容类别</a></th>
<td><a href="/zh-CN/docs/Web/Guide/HTML/Content_categories#流式元素(Flow_content)">流式内容</a>, 标题内容,可触知的内容。</td>
</tr>
<tr>
<th scope="row">允许内容</th>
<td><a href="/zh-CN/docs/Web/HTML/Content_categories#Phrasing_content">短语内容</a></td>
</tr>
<tr>
<th scope="row">标签省略</th>
<td>{{no_tag_omission}}</td>
</tr>
<tr>
<th scope="row">允许的父元素</th>
<td>任何接受流内容的元素;不要把它作为 {{HTMLElement("hgroup")}} 元素的子元素,这种做法已经被废弃了。</td>
</tr>
<tr>
<th scope="row">允许的 ARIA roles</th>
<td>{{ARIARole("tab")}}, {{ARIARole("presentation")}}</td>
</tr>
<tr>
<th scope="row">DOM 接口</th>
<td>{{domxref("HTMLHeadingElement")}}</td>
</tr>
</tbody>
</table>
<h2 id="属性">属性</h2>
<p>该元素包含所有<a href="/zh-CN/docs/Web/HTML/Global_attributes">全局特性</a>。</p>
<div class="blockIndicator note">
<p>align 属性已废弃;不要继续使用它。</p>
</div>
<h2 id="使用要点">使用要点</h2>
<ul>
<li>用户代理可以使用标题信息,例如自动构建文档的目录。</li>
<li>不要为了减小标题的字体而使用低级别的标题, 而是使用 <a href="/en-US/docs/Web/CSS">CSS</a> {{cssxref("font-size")}} 属性。</li>
<li>避免跳过某级标题:始终要从 <code><h1></code> 开始,接下来依次使用 <code><h2></code> 等等。</li>
<li>使用 {{HTMLElement("section")}} 元素时,为了方便起见,你应该考虑避免在同一个页面上重复使用 <h1>,<h1> 应被用于表示页面的标题,其他的标题当从 <h2> 开始。在使用 section 时,应当为每个 section 都使用一个 <code><h2></code>。详情请参考 {{SectionOnPage("/zh-CN/docs/Web/Guide/HTML/Using_HTML_sections_and_outlines", "Defining sections")}}。</li>
</ul>
<p> </p>
<h2 id="示例">示例</h2>
<h3 id="所有标题">所有标题</h3>
<p>下面的代码展示了所有可用的标题级别。</p>
<pre class="brush: html"><h1>一级标题</h1>
<h2>二级标题</h2>
<h3>三级标题</h3>
<h4>四级标题</h4>
<h5>五级标题</h5>
<h6>六级标题</h6>
</pre>
<p>下面是这些代码的结果:</p>
<p>{{ EmbedLiveSample('All_headings', '280', '300', '') }}</p>
<h3 id="示例页面">示例页面</h3>
<p>下面的代码展示了几个具有部分内容的标题。</p>
<pre class="brush: html"><h1>Heading elements</h1>
<h2>Summary</h2>
<p>Some text here...</p>
<h2>Examples</h2>
<h3>Example 1</h3>
<p>Some text here...</p>
<h3>Example 2</h3>
<p>Some text here...</p>
<h2>See also</h2>
<p>Some text here...</p>
</pre>
<p>下面是代码的运行结果:</p>
<p>{{ EmbedLiveSample('Example_page', '280', '480', '') }}</p>
<h2 id="可访问性问题">可访问性问题</h2>
<h3 id="导航">导航</h3>
<p>A common navigation technique for users of screen reading software is jumping from heading to heading to quickly determine the content of the page. Because of this, it is important to not skip one or more heading levels. Doing so may create confusion, as the person navigating this way may be left wondering where the missing heading is.</p>
<h4 id="错误用法">错误用法</h4>
<pre class="brush: html example-bad"><h1>Heading level 1</h1>
<h3>Heading level 3</h3>
<h4>Heading level 4</h4>
</pre>
<h4 id="正确用法">正确用法</h4>
<pre class="brush: html example-good"><h1>Heading level 1</h1>
<h2>Heading level 2</h2>
<h3>Heading level 3</h3>
</pre>
<h4 id="嵌套">嵌套</h4>
<p>Headings may be nested as subsections to reflect the organization of the content of the page. Most screen readers can also generate an ordered list of all the headings on a page, which can help a person quickly determine the hierarchy of the content:</p>
<ol>
<li><code>h1</code> Beetles
<ol>
<li><code>h2</code> Etymology</li>
<li><code>h2</code> Distribution and Diversity</li>
<li><code>h2</code> Evolution
<ol>
<li><code>h3</code> Late Paleozoic</li>
<li><code>h3</code> Jurassic</li>
<li><code>h3</code> Cretaceous</li>
<li><code>h3</code> Cenozoic</li>
</ol>
</li>
<li><code>h2</code> External Morphology
<ol>
<li><code>h3</code> Head
<ol>
<li><code>h4</code> Mouthparts</li>
</ol>
</li>
<li><code>h3</code> Thorax
<ol>
<li><code>h4</code> Prothorax</li>
<li><code>h4</code> Pterothorax</li>
</ol>
</li>
<li><code>h3</code> Legs</li>
<li><code>h3</code> Wings</li>
<li><code>h3</code> Abdomen</li>
</ol>
</li>
</ol>
</li>
</ol>
<p>When headings are nested, heading levels may be "skipped" when closing a subsection.</p>
<ul>
<li><a href="https://www.w3.org/WAI/tutorials/page-structure/headings/">Headings • Page Structure • WAI Web Accessibility Tutorials</a></li>
<li><a href="/en-US/docs/Web/Accessibility/Understanding_WCAG/Perceivable#Guideline_1.3_—_Create_content_that_can_be_presented_in_different_ways">MDN Understanding WCAG, Guideline 1.3 explanations</a></li>
<li><a href="https://www.w3.org/TR/UNDERSTANDING-WCAG20/content-structure-separation-programmatic.html">Understanding Success Criterion 1.3.1 | W3C Understanding WCAG 2.0</a></li>
<li><a href="/en-US/docs/Web/Accessibility/Understanding_WCAG/Operable#Guideline_2.4_—_Navigable_Provide_ways_to_help_users_navigate_find_content_and_determine_where_they_are">MDN Understanding WCAG, Guideline 2.4 explanations</a></li>
<li><a href="https://www.w3.org/TR/UNDERSTANDING-WCAG20/navigation-mechanisms-skip.html">Understanding Success Criterion 2.4.1 | W3C Understanding WCAG 2.0</a></li>
<li><a href="https://www.w3.org/TR/UNDERSTANDING-WCAG20/navigation-mechanisms-descriptive.html">Understanding Success Criterion 2.4.6 | W3C Understanding WCAG 2.0</a></li>
<li><a href="https://www.w3.org/TR/UNDERSTANDING-WCAG20/navigation-mechanisms-headings.html">Understanding Success Criterion 2.4.10 | W3C Understanding WCAG 2.0</a></li>
</ul>
<h3 id="Labeling_section_content">Labeling section content</h3>
<p>Another common navigation technique for users of screen reading software is to generate a list of <a href="/en-US/docs/Web/HTML/Element#Content_sectioning">sectioning content</a> and use it to determine the page's layout.</p>
<p>Sectioning content can be labeled using a combination of the <code><a href="/en-US/docs/Web/Accessibility/ARIA/ARIA_Techniques/Using_the_aria-labelledby_attribute">aria-labelledby</a></code> and {{htmlattrxref("id")}} attributes, with the label concisely describing the purpose of the section. This technique is useful for situations where there is more than one sectioning element on the same page.</p>
<h4 id="示例_2">示例</h4>
<pre class="brush: html"><header>
<nav aria-labelledby="primary-navigation">
<h2 id="primary-navigation">Primary navigation</h2>
<!-- navigation items -->
</nav>
</header>
<!-- page content -->
<footer>
<nav aria-labelledby="footer-navigation">
<h2 id="footer-navigation">Footer navigation</h2>
<!-- navigation items -->
</nav>
</footer>
</pre>
<p>In this example, screen reading technology would announce that there are two {{HTMLElement("nav")}} sections, one called "Primary navigation" and one called "Footer navigation". If labels were not provided, the person using screen reading software may have to investigate each <code>nav</code> element's contents to determine their purpose.</p>
<ul>
<li><a href="/en-US/docs/Web/Accessibility/ARIA/ARIA_Techniques/Using_the_aria-labelledby_attribute">Using the aria-labelledby attribute</a></li>
<li><a href="https://www.w3.org/WAI/tutorials/page-structure/labels/#using-aria-labelledby">Labeling Regions • Page Structure • W3C WAI Web Accessibility Tutorials</a></li>
</ul>
<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', 'sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements', '<h1>, <h2>, <h3>, <h4>, <h5>, and <h6>')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td> </td>
</tr>
<tr>
<td>{{SpecName('HTML5 W3C', 'sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements', '<h1>, <h2>, <h3>, <h4>, <h5>, and <h6>')}}</td>
<td>{{Spec2('HTML5 W3C')}}</td>
<td> </td>
</tr>
<tr>
<td>{{SpecName('HTML4.01', 'struct/global.html#h-7.5.5', '<h1>, <h2>, <h3>, <h4>, <h5>, and <h6>')}}</td>
<td>{{Spec2('HTML4.01')}}</td>
<td> </td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<p>{{Compat("html.elements.h1")}}</p>
<h2 id="参见">参见</h2>
<ul>
<li>{{HTMLElement("p")}}</li>
<li>{{HTMLElement("div")}}</li>
<li>{{HTMLElement("section")}}</li>
</ul>
<div>{{HTMLRef}}</div>
|