--- title: '
: 任意のキャプション付きの図要素' slug: Web/HTML/Element/figure tags: - HTML - HTML コンテンツグループ化 - 'HTML:フローコンテンツ' - 'HTML:区分化ルート' - 'HTML:知覚可能コンテンツ' - Reference - 要素 translation_of: Web/HTML/Element/figure ---
{{HTMLRef}}

HTML の <figure> (任意のキャプション付きの図) 要素は、図表などの自己完結型のコンテンツを表し、任意で ({{HTMLElement("figcaption")}}) 要素を使用して表されるキャプションを伴います。図、すなわちキャプションとその中身は一つの単位として参照されます。

{{EmbedInteractiveExample("pages/tabbed/figure.html","tabbed-shorter")}}
コンテンツカテゴリ フローコンテンツ, 区分化ルート, 知覚可能コンテンツ
許可されている内容 {{HTMLElement("figcaption")}} 要素とそれに続くフローコンテンツ、またはフローコンテンツとそれに続く{{HTMLElement("figcaption")}} 要素、またはフローコンテンツ
タグの省略 {{no_tag_omission}}
許可されている親要素 フローコンテンツを受け入れるすべての要素
許可されている ARIA ロール {{ARIARole("group")}}, {{ARIARole("presentation")}}
DOM インターフェイス {{domxref("HTMLElement")}}

属性

この要素にはグローバル属性のみがあります。

使用上のメモ

画像

<!-- 単なる画像 -->
<figure>
  <img
  src="https://developer.mozilla.org/static/img/favicon144.png"
  alt="美しい MDN のロゴ">
</figure>

<!-- キャプションが付いた画像 -->
<figure>
  <img
  src="https://developer.mozilla.org/static/img/favicon144.png"
  alt="美しい MDN のロゴ">
  <figcaption>MDN ロゴ</figcaption>
</figure>
{{EmbedLiveSample("Images", "100%", 375)}}

コードスニペット

<figure>
  <figcaption>Get browser details using <code>navigator</code>.</figcaption>
  <pre>
function NavigatorExample() {
  var txt;
  txt = "Browser CodeName: " + navigator.appCodeName + "; ";
  txt+= "Browser Name: " + navigator.appName + "; ";
  txt+= "Browser Version: " + navigator.appVersion  + "; ";
  txt+= "Cookies Enabled: " + navigator.cookieEnabled  + "; ";
  txt+= "Platform: " + navigator.platform  + "; ";
  txt+= "User-agent header: " + navigator.userAgent  + "; ";
  console.log("NavigatorExample", txt);
}
  </pre>
</figure>
{{EmbedLiveSample("Code_snippets", "100%", 250)}}

引用

<figure>
  <figcaption><cite>Edsger Dijkstra:</cite></figcaption>
  <blockquote>デバッグがソフトウェアのバグを取るプロセスであるならば、
  プログラミングはそれを入れるプロセスだ。</blockquote>
</figure>
{{EmbedLiveSample("Quotations")}}

<figure>
  <p style="white-space:pre">
Bid me discourse, I will enchant thine ear,
  Or like a fairy trip upon the green,
Or, like a nymph, with long dishevell'd hair,
  Dance on the sands, and yet no footing seen:
Love is a spirit all compact of fire,
  Not gross to sink, but light, and will aspire.</p>
  <figcaption><cite>Venus and Adonis</cite>,
    by William Shakespeare</figcaption>
</figure>
{{EmbedLiveSample("Poems", "100%", 250)}}

仕様書

仕様書 状態 備考
{{SpecName('HTML WHATWG', 'semantics.html#the-figure-element', '<figure>')}} {{Spec2('HTML WHATWG')}}
{{SpecName('HTML5.2', 'grouping-content.html#the-figure-element', '<figure>')}} {{Spec2('HTML5.2')}} HTML 5.0 から変更なし
{{SpecName('HTML5 W3C', 'grouping-content.html#the-figure-element', '<figure>')}} {{Spec2('HTML5 W3C')}}

ブラウザーの互換性

{{Compat("html.elements.figure")}}

関連情報