HTML - Tag <tbody>
Descrizione
Il tag HTML <tbody> viene utilizzato per aggiungere un corpo a una tabella. Il tag tbody viene utilizzato insieme al tag thead e al tag tfoot per determinare ogni parte della tabella (intestazione, piè di pagina, corpo).
Esempio
<!DOCTYPE html>
<html>
<head>
<title>HTML tbody Tag</title>
</head>
<body>
<table style = "width:100%" border = "1">
<thead>
<tr>
<td colspan = "4">This is the head of the table</td>
</tr>
</thead>
<tfoot>
<tr>
<td colspan = "4">This is the foot of the table</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
<td>Cell 3</td>
<td>Cell 4</td>
</tr>
<tr>
...more rows here containing four cells...
</tr>
</tbody>
<tbody>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
<td>Cell 3</td>
<td>Cell 4</td>
</tr>
<tr>
...more rows here containing four cells...
</tr>
</tbody>
</table>
</body>
</html>
Questo produrrà il seguente risultato:
Attributi globali
Questo tag supporta tutti gli attributi globali descritti in - Riferimento agli attributi HTML
Attributi specifici
Il tag HTML <tbody> supporta anche i seguenti attributi aggiuntivi:
Attributo | Valore | Descrizione |
---|---|---|
allineare | destra sinistra centro giustifica carattere |
Deprecato - Allineamento visivo. |
char | personaggio | Deprecato : specifica il carattere su cui allineare il testo. Utilizzato quando align = "char" |
charoff | pixel o% | Deprecato : specifica un offset di allineamento (in pixel o in valore percentuale) rispetto al primo carattere come specificato con l'attributo char. Utilizzato quando align = "char" |
valign | linea di base superiore centrale inferiore |
Deprecato - Allineamento verticale. |
Attributi dell'evento
Questo tag supporta tutti gli attributi degli eventi descritti in - Riferimento agli eventi HTML
Supporto browser
Cromo | Firefox | IE | musica lirica | Safari | Android |
---|---|---|---|---|---|
sì | sì | sì | sì | sì | sì |