2011-10-21 4 views
2

divタグとspanタグでitemscopeという属性を使用することをおすすめします。 HTML 5セクションタグで問題なく使用できますか?Google microformats&itemscopeタグ

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

答えて

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> 
関連する問題