RuleSets of AccessMonitor - the validator of web accessibility practices
The “Inappropriate Table Header Cells Check” evaluates whether there is any <th>
(header cell) in a table not functionally connected to at least one <td>
(data cell).
I found 1 header cell that is not associated with any data cells.
<th>
affects focus indicators and keyboard context.To address inappropriate table header cells:
<th>
element.<td>
element), or remove it if it does not apply to any data cell.headers
and scope
attributes (i.e., use scope="col"
or scope="row"
for simple tables and id
and headers
for complex tables).