Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Accessibility
  3. ARIA
  4. ARIA reference
  5. Roles
  6. rowheader

ARIA: rowheader role

An element withrole="rowheader" is acell containing header information for arow within a tabular structure of agrid,table ortreegrid.

Description

Rowheader is the headercell for a row, establishing a relationship between it and the other cells in the samerow.

html
<div  role="table"  aria-label="Populations"  aria-describedby="country_population_desc">  <div>World Populations by Country</div>  <div role="rowgroup">    <div role="row">      <span role="columnheader" aria-sort="descending">Country</span>      <span role="columnheader" aria-sort="none">Population</span>    </div>  </div>  <div role="rowgroup">    <div role="row">      <span role="rowheader">Finland</span>      <span role="cell">5.5 million</span>    </div>    <div role="row">      <span role="rowheader">France</span>      <span role="cell">67 million</span>    </div>  </div></div>

It is a structural equivalent to the<th> element with a scope ofrow,<th scope="row">. Using the native<th> HTML element is strongly encouraged.

To create an ARIA row header, addrole="rowheader" to the element. That row header must be nested within arow, which, in turn, is nested within arowgroup, or directly within agrid,table ortreegrid.

Note:Using the nativetable elements whenever possible, is strongly encouraged.

Associated WAI-ARIA roles, states, and properties

Context roles

role="row"

The only context in which you will find a row. It encompasses a cell or group of cells row, of which only one should be of rowheader type. Similar to the native<tr> HTML element.

Keyboard interactions

None.

Required JavaScript features

None.

Note:The first rule of ARIA use is if you can use a native feature with the semantics and behavior you require already built in, instead of re-purposing an element andadding an ARIA role, state or property to make it accessible, then do so. Employ the HTML<table>,<tr>,<th>,<td>, and othertable elements instead of the ARIA table roles whenever possible.

Examples

html
<div  role="table"  aria-label="Semantic Elements"  aria-describedby="semantic_elements_table_desc"  aria-rowcount="81">  <div>    Semantic Elements to use instead of ARIA's roles  </div>  <div role="rowgroup">    <div role="row">      <span role="columnheader" aria-sort="none">ARIA Role</span>      <span role="columnheader" aria-sort="none">Semantic Element</span>    </div>  </div>  <div role="rowgroup">    <div role="row" aria-rowindex="11">      <span role="rowheader">header</span>      <span role="cell">h1</span>    </div>    <div role="row" aria-rowindex="16">      <span role="rowheader">header</span>      <span role="cell">h6</span>    </div>    <div role="row" aria-rowindex="18">      <span role="rowheader">rowgroup</span>      <span role="cell">thead</span>    </div>    <div role="row" aria-rowindex="24">      <span role="rowheader">term</span>      <span role="cell">dt</span>    </div>  </div></div>

The above is a non-semantic ARIA table with a table header and table body, with five of 81 rows present in the DOM: one within a table header and four rows within the table body. The header row, alone in a header rowgroup, has two column headers. The columns are sortable, but not currently sorted, as indicated by thearia-sort property. The table body is a separate rowgroup, with four rows currently in the DOM. Each data table row has a row header. Because not all the rows are in the DOM, we've included thearia-rowindex property on every row.

Best practices

Only use<table>,<tbody>,<thead>,<tr>,<th>,<td>, and so on for data table structure. You can add these ARIA roles to ensure accessibility should the native semantics of the table be removed, such as with CSS. A relevant use case for all the ARIA table roles is when the CSS'sdisplay property overrides the native semantics of a table, such as bydisplay: grid. In this case, you can use the ARIA table roles to add in the semantics.

html
<table  role="table"  aria-label="Semantic Elements"  aria-describedby="semantic_elements_table_desc"  aria-rowcount="81">  <caption>    Semantic Elements to use instead of ARIA's roles  </caption>  <thead role="rowgroup">    <tr role="row">      <th role="columnheader" aria-sort="none">ARIA Role</th>      <th role="columnheader" aria-sort="none">Semantic Element</th>    </tr>  </thead>  <tbody role="rowgroup">    <tr role="row" aria-rowindex="11">      <th role="rowheader">header</th>      <td role="cell">h1</td>    </tr>    <tr role="row" aria-rowindex="16">      <th role="rowheader">header</th>      <td role="cell">h6</td>    </tr>  </tbody></table>

Above is the semantic way of writing a table. The ARIA roles are only necessary if the native semantics of the table, and therefore the table row headers, are obliterated, such as by setting thedisplay property to flex or grid.

Added benefits

none

Specifications

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

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2026 Movatter.jp