1

我编写了一个 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>
4

1 回答 1

6

是的,这很好,虽然如果<section>还有一个标题会更好,例如

<section>
   <h1>Article List</h1>
   <article>
      <h2>Article</h2>
      <p>Description of article</p>
   </article>
   ...
</section>
于 2013-05-08T16:26:40.737 回答