【发布时间】:2017-09-20 01:10:04
【问题描述】:
我不确定我的主要标题标签和其他语义元素是否正确。
在开始section之前,我可以在article中使用h1标签而不附加文本吗?
<main id="main" class="site-main">
<article itemtype="http://schema.org/CreativeWork" itemscope="itemscope">
<h1 itemprop="headline">Main Headline</h1>
<section itemprop="text">
<h2>First Section Headline</h2>
<p>Some text</p>
</section>
<section itemprop="text">
<h2>Second Section Headline</h2>
<p>Some text</p>
</section>
<section itemprop="text">
<h2>Third Section Headline</h2>
<p>Some text</p>
</section>
</article>
</main>
【问题讨论】:
标签: html semantic-markup html-heading