Designer-Logo
Designer-Logo
Überschrift Beispiel Tag tfoot
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
color: black;
}
</style>
</head>
<body>
<h3>Das thead, tbody, und tfoot Element</h3>
<table>
<thead>
<tr>
<th>Monat</th>
<th>Ersparnisse</th>
</tr>
</thead>
<tbody>
<tr>
<td>Januar</td>
<td>50 CHF</td>
</tr>
<tr>
<td>Februar</td>
<td>80 CHF</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Summe</td>
<td>130 CHF</td>
</tr>
</tfoot>
</table>
</body>
</html>
Überschrift BrowserAusgabe

Das thead, tbody, und tfoot Element

Monat Ersparnisse
Januar 50 CHF
Februar 80 CHF
Summe 130 CHF