Definizione e utilizzo
Le headers attributo specifica una o più celle di intestazione di una cella di una tabella è correlato.
Si applica a
La headers attributo può essere utilizzato sui seguenti elementi:
Elementi | Attributo |
---|---|
<td> | headers |
<th> | headers |
Esempi
Td Esempio
Specificare il <th> elemento ogni <td> elemento è in relazione a:
<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>
Prova tu stesso " Th Esempio
Specificare il <th> elemento ciascuna cella di intestazione è legato a:
<table>
<tr>
<th id="name" colspan="2">Name</th>
</tr>
<tr>
<th headers="name">Firsname</th>
<th headers="name">Lastname</th>
</tr>
</table>
Prova tu stesso " Supporto per il browser
Le headers
attributo ha la seguente supporto del browser per ogni elemento:
Elemento | |||||
---|---|---|---|---|---|
td | sì | sì | sì | sì | sì |
th | sì | sì | sì | sì | sì |