Skip to content

Latest commit

 

History

History
122 lines (99 loc) · 5.47 KB

File metadata and controls

122 lines (99 loc) · 5.47 KB
title slug l10n
<footer>:页脚元素
Web/HTML/Element/footer
sourceCommit
fdd3ac5598c3ddceb71e59949b003936ae99f647

{{HTMLSidebar}}

HTML <footer> 元素表示其最近的祖先分段内容的页脚或分段根元素。<footer> 通常包含有关该部分作者、版权数据或相关文档链接的信息。

{{EmbedInteractiveExample("pages/tabbed/footer.html", "tabbed-standard")}}

属性

该元素仅包含全局属性

使用说明

  • 在 {{HTMLElement("address")}} 元素中包含有关作者的信息,该元素可以包含在 <footer> 元素中。
  • 当最近的祖先分段内容或分段根元素是 body 元素时,页脚适用于整个页面。
  • <footer> 元素不是分段内容,因此不会在大纲中引入新的分段。

示例

<body>
  <h3>FIFA 世界杯最佳射手</h3>
  <ol>
    <li>米罗斯拉夫 · 克洛泽,16</li>
    <li>罗纳尔多 · 纳扎里奥,15</li>
    <li>格尔德 · 穆勒,14</li>
  </ol>

  <footer>
    <small> 版权所有 © 2023 足球历史档案馆。保留所有权利。 </small>
  </footer>
</body>
footer {
  text-align: center;
  padding: 5px;
  background-color: #abbaba;
  color: #000;
}

{{EmbedLiveSample('示例')}}

无障碍考虑

在 Safari 13 发布之前,contentinfo 地标角色无法通过 VoiceOver 正确显示。如果需要支持传统的 Safari 浏览器,请在 footer 元素中添加 role="contentinfo" 以确保正确显示地标。

技术概要

内容分类 流式内容、可感知内容。
允许的内容 流式内容,但不可以有 <footer> 或 {{HTMLElement("header")}} 后代。
标签省略 不允许,开始和结束标签都是必需的。
允许的父元素 任何接受流式内容的元素。请注意,<footer> 元素不得是 {{HTMLElement("address")}}、{{HTMLElement("header")}} 或其他 <footer> 元素的后代。
隐式 ARIA 角色 contentinfogeneric 如果是 articleasidemainnavsection 元素的后代,则为 contentinfogeneric,或一个具有 role=articlecomplementarymainnavigationregion 的元素
允许的 ARIA 角色 grouppresentationnone
DOM 接口 {{domxref("HTMLElement")}}

规范

{{Specifications}}

浏览器兼容性

{{Compat}}

参见

  • 其他与分节相关的元素:{{HTMLElement("body")}}、{{HTMLElement("nav")}}、{{HTMLElement("article")}}、{{HTMLElement("aside")}}、{{HTMLElement("Heading_Elements", "h1")}}、{{HTMLElement("Heading_Elements", "h2")}}、{{HTMLElement("Heading_Elements", "h3")}}、 {{HTMLElement("Heading_Elements", "h4")}}、{{HTMLElement("Heading_Elements", "h5")}}、{{HTMLElement("Heading_Elements", "h6")}}、{{HTMLElement("hgroup")}}、{{HTMLElement("header")}}、{{HTMLElement("section")}}、{{HTMLElement("address")}}
  • 使用 HTML 分节和大纲
  • ARIA:Contentinfo 角色