Definición y Uso
Las headers atributo especifica una o más celdas de encabezado de una celda de la tabla se relaciona con.
Se aplica a
El headers atributo se puede usar en los siguientes elementos:
Elementos | Atributo |
---|---|
<td> | headers |
<th> | headers |
Ejemplos
Td Ejemplo
Especificar el <th> elemento de cada <td> elemento está relacionado con:
<table>
<tr>
<th id="name">Name</th>
<th id="email">Email</th>
<th id="phone">Phone</th>
<th id="addr">Address</th>
</tr>
<tr>
<td headers="name">John Doe</td>
<td headers="email">[email protected]</td>
<td headers="phone">+45342323</td>
<td headers="addr">Rosevn 56,4300 Sandnes,Norway</td>
</tr>
</table>
Inténtalo tú mismo " Th Ejemplo
Especificar el <th> elemento de cada celda de cabecera está relacionado con:
<table>
<tr>
<th id="name" colspan="2">Name</th>
</tr>
<tr>
<th headers="name">Firsname</th>
<th headers="name">Lastname</th>
</tr>
</table>
Inténtalo tú mismo " Soporte para el navegador
Los headers
de atributos tiene el siguiente soporte de los navegadores para cada elemento:
Elemento | |||||
---|---|---|---|---|---|
td | Sí | Sí | Sí | Sí | Sí |
th | Sí | Sí | Sí | Sí | Sí |