Josh M.
Josh M.

Reputation: 27811

Make large, complex data table screen-reader friendly and 508 compliant

I'm working with a very large HTML table. It is properly structured using thead, th, scope="", etc. The thead has, for example, 7 header rows of nested columns and 180 columns across.

What are the recommended methods for making this sort of table 508 compliant and screen-reader friendly? Is it even possible?

Upvotes: 0

Views: 219

Answers (1)

PDA
PDA

Reputation: 774

Each table header has to have an id, then each cell that has multiple table headers, use the headers attribute to link to ids.

The order of the ids in the headers is important, so think how you'd want the user to hear the data.

Upvotes: 2

Related Questions