문제

Google recommends using the attribute itemscope with div tags and span tags. Can they be used with HTML 5 section tag without trouble ?

<section id="product" itemscope itemtype="http://data-vocabulary.org/Product">
....
</section>
도움이 되었습니까?

해결책

Yes. The specs explicitly use the <section> tags in an example. They also use other tags besides <div> and <span> as well.

<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>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top