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>