Pues eso. Si tenemos un Thead y un Tbody, intuyo que seguramente habrá yn Tfooter o Tfoot. ¿Para qué serviría este último?
Pues eso. Si tenemos un Thead y un Tbody, intuyo que seguramente habrá yn Tfooter o Tfoot. ¿Para qué serviría este último?
Hola Osvaldo, efectivamente hay un
<table>
<thead>
<tr>
<th>Artículo</th>
<th scope="col">Costo</th>
</tr>
</thead>
<tbody>
<tr>
<td >Pan</td>
<td>3</td>
</tr>
<tr>
<td>Elote</td>
<td>5</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Total</td>
<td>8</td>
</tr>
</tfoot>
