Skip to main content
  1. All Posts/

Tables – Accessibility Guidelines

Accessibility 18F GSA
Table of Contents

When tables are used to show data, the header cells that relate to the data cells need to be programmatically linked. This makes table navigation for screen readers more accurate and meaningful.

Simple tables can have up to two levels of headings; one row of headers and/or one column of headings. A table with more than one row or more than one column of headings is considered to be a complex table. Each table header cell should have <th scope=‘col’> or <th scope=‘row’>.

Note: Simple tables with headers in the first row and/or column don’t actually need the scope attribute for assistive technology to read them correctly. However, 508 test procedures within the federal government require table headings to have either scope or id attributes.

Complex tables are tables with more than two levels of headers. Each header (th) should be given a unique id, and each data cell (td) should have a headers attribute with each related header cell’s id listed.

If a table has text associated with it, ensure the text is programmatically linked to the table. This is usually accomplished with a <caption> element. This element should be the first element under the <table> element. While a caption is not required, it can be very helpful to screen reader users navigating the page. A caption element is strongly encouraged on data tables to give context to the data.

Testing>

Testing #

  1. Identify ‘data’ tables (layout tables are exempt).
  2. View the table source code.
  3. Identify the table headers.
    • Check for scope on simple tables.
    • Check for id and headers on complex tables.