Must haves
- Use
<table>
markup for tabular data (no<div>
soup). - Avoid using
<table>
markup for page layout. Use CSS and HTML for layout. - Include a
<caption>
element within the table. - Identify column headers by using
<th scope="col">
and row headers by using<th scope="row">
.- Tip: use both column and row headers whenever possible. Most tables will have both column and row headers that need to be marked up correctly.
Learn more about accessible tables from the W3C
More about accessible tables from the Office of Digital Accessibility
Visual Example
Pull from https://uit.stanford.edu/service/cardinalkey
Do and Don't
Do | Don't |
---|---|
<table> <caption>Project Updates</caption> <thead> <tr> <td></td> <th scope="col">Project Lead</th> <th scope="col">Status</th> <th scope="col">Estimated End Date</th> </tr> </thead> <tr> <th scope="row">Website Upgrade</th> <td>Jane Doe</td> <td>In Progress</td> <td>3/1/25</td> </tr> <tr> <th scope="row">Documentation Overhaul</th> <td>Joe Smith</td> <td>Not Started</td> <td>5/1/25</td> </tr> <tr> <th scope="row">Office Refurb</th> <td>Sally Jones</td> <td>Under Review</td> <td>12/1/24</td> </tr> </table> |
Here there is no semantic structure to the data and screen readers will not be able to detect and communicate the content relationships to users. |