Google 建议将属性 itemscope 与 div 标签和 span 标签一起使用。它们可以毫无问题地与 HTML 5 部分标签一起使用吗?
<section id="product" itemscope itemtype="http://data-vocabulary.org/Product">
....
</section>
Google 建议将属性 itemscope 与 div 标签和 span 标签一起使用。它们可以毫无问题地与 HTML 5 部分标签一起使用吗?
<section id="product" itemscope itemtype="http://data-vocabulary.org/Product">
....
</section>
是的。规范<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>