HTML <header>
元素用于展示介绍性内容,通常包含一组介绍性的或是辅助导航的实用元素。它可能包含一些标题元素,但也可能包含其他元素,比如 Logo、搜索框、作者名称,等等。
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 https://github.com/mdn/interactive-examples and send us a pull request.
内容类型 | Flow content,palpable content。 |
---|---|
许可内容 | Flow content,但是不允许 <header> 或{{HTMLElement("footer")}} 成为子元素 |
标记省略 | {{no_tag_omission}} |
允许的父元素 | 任何接受 flow content 的元素。注意 <header> 元素不能作为 {{HTMLElement("address")}}、{{HTMLElement("footer")}} 或另一个 {{HTMLElement("header")}} 元素的子元素。 |
允许的 ARIA 角色 | {{ARIARole("group")}},{{ARIARole("presentation")}} |
DOM 接口 | {{domxref("HTMLElement")}} |
<header>
元素不是分段内容,因此不会往 大纲 中引入新的段落。也就是说,<header>
元素通常用于包含周围部分的标题(h1
至 h6
元素),但这不是必需的。
此元素仅拥有 全局属性。
<header> <h1>主页标题</h1> <img src="mdn-logo-sm.png" alt="MDN logo"> </header>
<article> <header> <h2>The Planet Earth</h2> <p>Posted on Wednesday, 4 October 2017 by Jane Smith</p> </header> <p>We live on a planet that's blue and green, with so many things still unseen.</p> <p><a href="https://janesmith.com/the-planet-earth/">Continue reading....</a></p> </article>
规范 | 状态 | 备注 |
---|---|---|
{{SpecName('HTML WHATWG', 'semantics.html#the-header-element', '<header>')}} | {{Spec2('HTML WHATWG')}} | |
{{SpecName('HTML5 W3C', 'sections.html#the-header-element', '<header>')}} | {{Spec2('HTML5 W3C')}} |
{{Compat("html.elements.header")}}