解説

通常は未来の視点から、作品の展開や出来事をまとめたりコメントしたりする物語の結論部分。

例1 — 見出し付きのエピローグ

ラベルはaria-labelledby属性で識別します。

<section role="doc-epilogue" aria-labelledby="epi-hd">
   <h2 id="epi-hd">Ten Years Later</h2>
   …
</section>
例2 — 見出しのないエピローグ

セクションのラベルはaria-label属性で指定します。

<section role="doc-epilogue" aria-label="Epilogue">
   <p>Long after the events of the story concluded, I still found myself wondering …</p>
   …
</section>

ARIAとの関係

doc-epilogueは、landmarkロールです。

使用方法

doc-epilogueは通常、 section要素で使用します。

aria-labelledbyaria-label 、またはtitle属性のいずれかを使用して、ロールにラベルを指定しなければなりません。

role属性に認められる値についての簡易リストは、EPUBタイプによるARIAロール製作ガイド(EPUB Type to ARIA Role Authoring Guide)対応表をご覧ください。正式なリストは、HTMLのARIAについて(ARIA in HTML)を参照してください。

関連リンク