Google建议将属性itemscope与div标签和span标签一起使用。 它们可以毫不费力地与HTML 5节标签一起使用吗?
<section id="product" itemscope itemtype="http://data-vocabulary.org/Product">
....
</section>
答案 0 :(得分:1)
是。 The specs在示例中明确使用<section>
标记。除了<div>
和<span>
之外,他们还会使用其他标签。
<section itemscope itemtype="http://example.org/animals#cat">
<h1 itemprop="name">Hedral</h1>
<p itemprop="desc">Hedral is a male american domestic
shorthair, with a fluffy black fur with white paws and belly.</p>
<img itemprop="img" src="hedral.jpeg" alt="" title="Hedral, age 18 months">
</section>