caption elements to associate data table captions with data tablesHTML data tables
The objective of this technique is to programmatically associate captions for data
tables where captions are provided in the presentation. The caption for a table is a table identifier and acts like a title or heading for the table.
The caption element is the appropriate markup for such text and it ensures that the table identifier remains associated with the table, including visually (by default). In addition, using the caption element allows screen reading software to navigate directly to the caption for a table if one is present.
Although WCAG 2 does not prohibit the use of layout tables, CSS-based layouts are recommended in order to retain the defined semantic meaning of the HTML table elements and to conform to the coding practice of separating presentation from content. If a table is used for layout, the caption element is not used. The purpose of a layout table is simply to control the placement of content; the table itself is "transparent" to the user. A caption would "break" this transparency by calling attention to the table. See F46 for details.
caption<table>
<caption>Schedule for the week of March 6</caption>
...
</table>
For each data table:
caption element.caption element.