Ga direct naar inhoud

Tabelrichting testpagina

Overzicht van het element in mogelijke structuren om te testen.

Tests

Visueel voorbeeld:

Tabelvoorbeeld met aangegeven scope:
NaamDiersoort
ManonKat
MaxHond
KeikoKat

HTML-voorbeeld:

<div class="horizontal-scroll">
  <table>
    <caption>Tabelvoorbeeld met aangegeven scope:</caption>
    <thead>
      <tr>
        <th scope="col">Naam</th>
        <th scope="col">Diersoort</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <th scope="row">Manon</th>
        <td>Kat</td>
      </tr>
      <tr>
        <th scope="row">Max</th>
        <td>Hond</td>
      </tr>
      <tr>
        <th scope="row">Keiko</th>
        <td>Kat</td>
      </tr>
    </tbody>
  </table>
</div>