How-Tos and Demos

Accessible Tables

Code Example: Associating Data Cells and Header Cells in a Complex Table

<table width="100%" border="1" summary="This bus schedule lists selected intersections along the route, followed by the times when the bus stops at each intersection. To plan your trip, locate the intersection closest to where you want to get on the bus. Read down the column till you find the time closest to when you'd like to start your trip. Read across that row to find out when you'll reach the stop closest to your destination.">
<caption>Schedule for Bus from Downtown</caption>
<thead>
<tr>
<th colspan="9" id="dir">Northbound</th>
</tr>
<tr>
<th id="intersection1">6th &amp; <abbr title=" Congress Avenue">Con</abbr></th>
<th id="intersection2">11th &amp; <abbr title="Congress Avenue">Con</abbr></th>
<th id="intersection3">12th &amp; <abbr title="Lavaca Street">Lav</abbr></th>
<th id="intersection4">15th &amp; <abbr title="Lavaca Street">Lav</abbr></th>
<th id="intersection5">MLK &amp; <abbr title="Lavaca Street">Lav</abbr></th>
<th id="intersection6">24th &amp; <abbr title="Guadalupe Street">Gua</abbr></th>
<th id="intersection7">28th &amp; <abbr title="Guadalupe Street">Gua</abbr></th>
<th id="intersection8">32nd &amp; <abbr title="Guadalupe Street">Gua</abbr></th>
<th id="intersection9">32nd &amp; <abbr title="Rio Grande">Rio</abbr></th>
</tr>
</thead>
<tbody>
<tr>
<td headers="dir intersection1">10:33am</td>
<td headers="dir intersection2">10:36am</td>
<td headers="dir intersection3">10:42am</td>
<td headers="dir intersection4">10:45am</td>
<td headers="dir intersection5">10:50am</td>
<td headers="dir intersection6">10:55am</td>
<td headers="dir intersection7">11:03am</td>
<td headers="dir intersection8">11:11am</td>
<td headers="dir intersection9">11:17am</td>
</tr>
<tr>
<td headers="dir intersection1">10:48am</td>
<td headers="dir intersection2">10:51am</td>
<td headers="dir intersection3">10:57am</td>
<td headers="dir intersection4">11:00am</td>
<td headers="dir intersection5">11:05am</td>
<td headers="dir intersection6">11:10am</td>
<td headers="dir intersection7">11:18am</td>
<td headers="dir intersection8">11:26am</td>
<td headers="dir intersection9">11:32am</td>
</tr>
<tr>
<td headers="dir intersection1">11:03am</td>
<td headers="dir intersection2">11:06am</td>
<td headers="dir intersection3">11:12am</td>
<td headers="dir intersection4">11:15am</td>
<td headers="dir intersection5">11:20am</td>
<td headers="dir intersection6">11:25am</td>
<td headers="dir intersection7">11:33am</td>
<td headers="dir intersection8">11:41am</td>
<td headers="dir intersection9">11:47am</td>
</tr>
</tbody>
</table>