Definizione e utilizzo
Il rowspan attributo specifica il numero di righe di una cella dovrebbe estendersi.
Si applica a
La rowspan attributo può essere utilizzato sui seguenti elementi:
Elementi | Attributo |
---|---|
<td> | rowspan |
<th> | rowspan |
Esempi
Td Esempio
Una tabella HTML con una cella di tabella che si estende su due righe:
<table>
<tr>
<th>Month</th>
<th>Savings</th>
<th>Savings for holiday!</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
<td rowspan="2">$50</td>
</tr>
<tr>
<td>February</td>
<td>$80</td>
</tr>
</table>
Prova tu stesso " Th Esempio
Una tabella HTML con una cella di intestazione che si estende su tre file:
<table>
<tr>
<th>Month</th>
<th>Savings</th>
<th rowspan="3">Savings for holiday!</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td>$80</td>
</tr>
</table>
Prova tu stesso " Supporto per il browser
Il rowspan
attributo ha la seguente supporto del browser per ogni elemento:
Elemento | |||||
---|---|---|---|---|---|
td | sì | sì | sì | sì | sì |
th | sì | sì | sì | sì | sì |