Etiquetas de Tablas
Etiquetas: <table>,<caption>,<thead>,<tbody>,<tfoot>,<tr>,<th> y <td>
<table>,<caption>,<thead>,<tbody>,<tfoot>,<tr>,<th> y <td><table>
<caption>Ahorro Mensual</caption>
<thead>
<tr>
<th>Mes</th>
<th>Ahorro</th>
</tr>
</thead>
<tbody>
<tr>
<td>Enero</td>
<td>100€</td>
</tr>
<tr>
<td>Febrero</td>
<td>150€</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Total</td>
<td>350€</td>
</tr>
</tfoot>
</table>
Atributos especiales rowspan y colspan

Última actualización
¿Te fue útil?