ARIA: definition ロール

definition ARIA ロールは、要素が用語や概念の定義であることを示します。

説明

definition ARIA ロールは、ネイティブな <dfn> 要素と同様に、用語や概念の定義である要素に含めることができます。definition と、定義されている term を関連付け、アクセシブル名を提供するには、aria-labelledby を使用して role="term" で定義されている用語を参照します。

html
<p>
  <span role="term">Mansplaining</span>,
  <span role="definition">
    a portmanteau of "man" and "explain", is the patronizing act of explaining
    without being asked to do so, to someone already learned on the topic, often
    after someone has already explained it
  </span>.
</p>

メモ: termdefinition ロールを持つ <span> の代わりに、<dfn> 要素を使用してください。利用可能であれば、常にネイティブ要素を使用してください。

html
<p>
  <dfn>Mansplaining</dfn>, a portmanteau of "man" and "explain", is the
  patronizing act of explaining without being asked to do so, to someone already
  learned on the topic, often after someone has already explained it.
</p>

仕様書

Specification
Accessible Rich Internet Applications (WAI-ARIA)
# definition

関連情報