作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道您可以在一个页面中有多个页眉/页脚,例如 <article>
s 和另一个站点范围的页眉/页脚 <body>
但我没有发现任何地方说明在单个部分中有多个页眉和/或页脚是可以接受的。
<body>
<header class="header-group-1"></header>
<header class="header-group-2"></header>
<!-- other content -->
<footer class="footer-group-1></footer>
<footer class="footer-group-2></footer>
</body>
最佳答案
多个 header
elements允许,并且每个都指定“其最近的祖先分节内容或分节根元素的介绍性内容”,即最近的封闭文章、aside、nav、section、blockquote、body、details、dialog、fieldset、figure 或 td 元素.所以你可以有例如
<body>
<header>body header</header>
...
<article>
<header>article header</header>
...
</article>
header
article
中的元素(在同一嵌套级别)元素。然后,它们都将包含它的“介绍性内容”。然而,很难想象这种情况是有意义的,因为
header
元素通常在其他内容之前,而
header
因此将是相邻的并且可以合并为一个。
关于HTML5 : Multiple footers/headers in a section,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21655804/
我是一名优秀的程序员,十分优秀!