Descripción
El elemento tfoot
se puede usar para agregar un pie de tabla que contenga información de resumen, como totales, a una tabla. Este elemento se coloca después de tbody
y thead
, pero antes de cualquier tr
, td
o th
.
Sintaxis
<tfoot>
<tr>
<td><!-- Contenido de resumen --></td>
</tr>
</tfoot>
Atributos Globales
- accesskey
- autocapitalize
- autofocus
- contenteditable
- dir
- draggable
- enterkeyhint
- hidden
- inputmode
- is
- itemid
- itemprop
- itemref
- itemscope
- itemtype
- lang
- nonce
- spellcheck
- style
- tabindex
- title
- translate
Ejemplo
<table>
<thead>
<tr>
<th>Producto</th>
<th>Precio</th>
</tr>
</thead>
<tbody>
<tr>
<td>Pan</td>
<td>20</td>
</tr>
<tr>
<td>Aceite</td>
<td>80</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Total</td>
<td>100</td>
</tr>
</tfoot>
</table>
Artículos
Vídeos HTML
Disfruta también de nuestros artículos sobre HTML en formato vídeo. Aprovecha y suscribete a nuestro canal.