College Logo Image
 

Web Accessibility Implementation


Point 6: Tables Used to Display Data Must Identify Row and Column Headers

Summary:

Data tables are structured by placing information in row, column format -- similar to a spreadsheet. Assistive technologies, such as screen readers attempt to interpret this information in a meaningful way. Screen readers, in particular, read text linearly; that is, they read across the line from left to right. That causes a problem when attempting to render tables meaningfully. To solve this problem for simple data tables, table rows (<TD>) and table headers (<TH>) must be explicitly identified within HTML code.

See: Example 6 | More W3C Examples
Back to Phase I Objectives | Next Point -->