作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我是 HTML5 标记的新手。
我想知道我是否可以像下面这样在页脚中使用部分标记。
<article>
<header class="content__header">
</header>
<section class="content__body">
</section>
<footer class="content__footer>
<section class="relatedArticles">
</section>
<section class="pagination">
</section>
</footer>
</article>
w3c 文档对页脚标签的使用没有太多解释。
谢谢!!
最佳答案
The w3c document doesn't explain much about footer tag usage.
...实际上,确实如此。第 4.3.8 节 <footer>
( http://www.w3.org/TR/html5/sections.html#the-footer-element ) 状态:
Content model: Flow content, but with no header, footer, or main element descendants.
The section of the specifiction defining "Flow content" (3.2.4.1.2) lists all "flow" elements ,其中列出了 <section>
.
因此,您的 HTML 是有效的:<section>
可以是 <footer>
的后代, 然而<header>
, <footer>
, 和 <main>
不能。
关于html - 在 HTML5 的页脚标签中包含 section 标签可以吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25945068/
我是一名优秀的程序员,十分优秀!