虽然我真的应该知道这一点,但我担心我不能完全理解。阅读过不同的文章,阅读书籍并与其他人交谈后,我仍然不太了解HTML5 section
的正确结构。在h1
和/或section
中添加article
代码是否合适?新的section
或article
是否会构成再次启动h1
到h2
流程?
我的印象是每个“块”应该被允许它自己的“标题”结构。
例如,这是正确的HTML5吗? :
<!doctype html>
<html>
<head>
<title>
<!-- etc. etc. -->
<body>
<section> <!-- two or more <articles> within this section, both using <h1> tags -->
<h1>Here is a section with articles in</h1>
<article>
<h1>Heading</h1>
<h2>sub heading</h2>
<p>A paragraph>
</article>
<article>
<h1>Heading</h1>
<h2>sub heading</h2>
<p>A paragraph</p>
</article>
...
</section>
<section> <!-- two or more <articles> within this additional section, both using <h1> tags -->
<h1>Here is a section with articles in</h1>
<article>
<h1>Heading</h1>
<h2>sub heading</h2>
<p>A paragraph>
</article>
<article>
<h1>Heading</h1>
<h2>sub heading</h2>
<p>A paragraph</p>
</article>
...
</section>
</body>
</html>
答案 0 :(得分:4)
由于h1
中的每对h2
和article
元素分别代表一个标题和一个副标题,因此您需要将该对分组为自己的header
在article
内,以便为每篇文章生成适当的文档大纲。
除此之外,你的部分的标题结构似乎很好。