xxxxxxxxxx
<html>
<head>
<style>
table *:not(caption) {
border: solid 1px lightgray;
padding: 0.5rem;
}
</style>
</head>
<body>
<h1>Basic tfoot element example</h1>
<table>
<caption>
This is the table's caption
</caption>
<thead>
<tr>
<th colspan="2">The table header with one column</th>
</tr>
</thead>
<tbody>
<tr>
<td>The table body</td>
<td>with two columns</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Footer cell 1</td>
<td>Footer cell 2</td>
</tr>
</tfoot>
</table>
</body>