Tables
<table>
<caption>Stundenplan</caption> <!-- Tabellenüberschrift -->
<thead> <!-- table head -->
<tr> <!-- table row -->
<th>Montag</th> <!-- table heading -->
<th>Dienstag</th>
</tr>
</thead>
<tbody> <!-- table body -->
<tr>
<td>POS</td> <!-- table data -->
<td>TINF</td>
</tr>
</tbody>
</table>
Mehrere Zeilen/Spalten
<tX rowspan="n" colspan="m">content</tX>
Alternierender Hintergrund
table tr:nth-child(odd) {
background: #b8d1f3;
}
table tr:nth-child(even) {
background: #dae5f4;
}