View Single Post
  #16 (permalink)  
Old 09-25-2003, 05:45 PM
cyberRobot cyberRobot is offline
WebProWorld Member
 

Join Date: Jul 2003
Posts: 27
cyberRobot RepRank 0
Default Re: <th> tags and scope for accessible tables

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>
...
Reply With Quote