Techniques/HTML/Thoughts on HTML Table Techniques

From WCAG WG


content here...


We should edit the example in H63 to include rather than

<table border="1">
  <caption>Contact Information</caption>
  <tr>
    <td></td>
    <th scope="col">Name</td>
    <th scope="col">Phone#</td>
    <th scope="col">Fax#</td>
    <th scope="col">City</td>
  </tr><tr>
    <td>1.</td>
    <th scope="row">Joel Garner</td>
    <td>412-212-5421</td>
    <td>412-212-5400</td>
    <td>Pittsburgh</td>
  </tr><tr>
    <td>2.</td>
    <th scope="row">Clive Lloyd</td>
    <td>410-306-1420</td>
    <td>410-306-5400</td>
    <td>Baltimore</td>
  </tr><tr>
    <td>3.</td>
    <th scope="row">Gordon Greenidge</td>
    <td>281-564-6720</td>
    <td>281-511-6600</td>
    <td>Houston</td>
  </tr>
</table>