我编写了HTML5文章列表。我一直在搜索这是否是使用新的HTML5语义标签的正确方法,但我仍然不确定。这个标记在使用语义方面是否正确?
<section>
<article>
<h2>Article</h2>
<p>Description of article</p>
</article>
<article>
<h2>Article</h2>
<p>Description of article</p>
</article>
<article>
<h2>Article</h2>
<p>Description of article</p>
</article>
</section>
答案 0 :(得分:6)
是的,没关系,但如果<section>
也有一个标题会更好,例如
<section>
<h1>Article List</h1>
<article>
<h2>Article</h2>
<p>Description of article</p>
</article>
...
</section>