2

Googleでは、属性itemscopeをdivタグとspanタグとともに使用することをお勧めします。HTML 5セクションタグで問題なく使用できますか?

<section id="product" itemscope itemtype="http://data-vocabulary.org/Product">
....
</section>
4

1 に答える 1

1

はい。仕様<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>
于 2011-10-21T15:02:52.750 に答える