我的理解(根据本章的“深入HTML5”:http : //goo.gl/9zliD),可以认为在语义上适合在页面的多个区域使用H1标签,作为设置最重要标题的方法对于该特定内容。
如果我使用的是这种方法,并且我有一个SECTION分配了H1的“ Articles”,那么我应该使用H1还是H2来定义该SECTION中的ARTICLE标题? 这对我来说有点困惑,因为文章标题是其文章的最重要标题,但也是SECTION标题的“子代”。
示例代码:
<section class="article-list">
<header>
<h1>Articles</h1>
</header>
<article>
<header>
<h2>Article Title</h2>
<time datetime="201-02-01">Today</time>
</header>
<p>Article text...</p>
</article>
<article>
<header>
<h2>Article Title</h2>
<time datetime="2011-01-31">Yesterday</time>
</header>
<p>Article text...</p>
</article>
<article>
<header>
<h2>Article Title</h2>
<time datetime="2011-01-30">The Day Before Yesterday</time>
</header>
<p>Article text...</p>
</article>
</section>