HTML Tag Reference
itemscope 属性
関連付けられたメタデータのスコープを定義する
itemscope 属性は Microdata (マイクロデータ) のマークアップを行う際、関連付けられたメタデータのスコープを定義します。itemscope 属性は論理属性です。
itemscope 属性を付与された要素が itemtype 属性を持たない場合は、マイクロデータを含む要素と関連付けられた itemref 属性を持つ必要があります。
itemscope 属性の仕様
- この属性を使用できる要素
-
- すべての HTML 要素
itemscope 属性のサンプルソース
<!DOCTYPE html> <html lang="ja" itemscope itemtype="http://schema.org/WebPage"> <head> <meta charset="utf-8" /> <title itemprop="name">文書のタイトル</title> <meta itemprop="description" content="文書の概要テキスト" /> <link itemprop="author" href="http://example.com/aboutme/" /> </head>