Tabelrichting testpagina
Overzicht van het element in mogelijke structuren om te testen.
Tests
Visueel voorbeeld:
Naam | Diersoort |
---|---|
Manon | Kat |
Max | Hond |
Keiko | Kat |
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>