I'm beginning to think that my question got lost does anyone know if my code is correct (for accessibility) for ScottNorton's example?
Quote:
|
Originally Posted by ScottNorton
Drink Senators Representatives
------- -------- ---------------
Coffee 23 95
Water 18 27
Tea 5 18
|
Quote:
|
Originally Posted by cyberRobot
Code:
...
<tr>
<th>Drink</th>
<th>Senators</th>
<th>Representatives</th>
</tr>
<tr>
<td scope="row">Coffee</td>
<td>23</td>
<td>95</td>
</tr>
...
|