什么是使用部分的最佳方式

时间:2018-01-11 15:14:27

标签: html5

我想知道哪种方式更好。我查看了以下答案HTML5 best practices; section/header/aside/article elements但找不到它。有人有想法吗?

A)

<article>
  <h1>Title 1</h1>
  <section>
    <p>content</p>
  </section>

  <h2>Title 1.1</h2>
  <section>
     <p>content</p>
  </section>
 </article>

b)中

<article>
  <h1>Title 1</h1>
  <section>
    <p>content</p>
    <h2>Title 1.1</h2>
    <section>
      <p>content</p>
    </section>
  </section>
</article>

也许还有更好的方法?

0 个答案:

没有答案