Il tag HTML <table>



Descrizione

Il tag HTML <table> viene usato per creare una tabella. Esso contiene al suo interno altri tag che servono a definire la struttura della tabella.

Esempio

<!DOCTYPE html>
<html>
<head>
<title>HTML table Tag</title>
</head>
<body>
<table border="1">
  <tr>
    <th>Team</th>
    <th>Ranking</th>
  </tr>
  <tr>
    <td>India</td>
    <td>1</td>
  </tr>
  <tr>
    <td>South Africa</td>
    <td>2</td>
  </tr>
  <tr>
    <td>Australia</td>
    <td>3</td>
  </tr>
</table>
</body>
</html>

Produrrà il seguente risultato:

Team Ranking
India 1
South Africa 2
Australia 3

Attributi Globali

Questo tag supporta tutti gli attributi globali descritti in - HTML - Referenze Attributi

Attributi Specifici

The HTML <table> supporta anche i seguenti attributi aggiuntivi:

AttributoValoreDescrizione
abbr abbreviated_textDeprecato-Definisce una versione abbreviata del contenuto di una cella.
alignright
left
center
justify
char
Deprecato-Allineamento visuale.
bgcolor rgb(x,x,x)
#hexcode
colorname
Deprecato-Definisce il colore di sfondo della tabella.
border pixelsDeprecato-Definisce la larghezza del bordo. Se impostato su "0" indica che non verrĂ  mostrato.
cellpadding pixels o %Deprecato-Definisce lo spazio fra il bordo della cella ed il suo contenuto.
cellspacing pixels o %Deprecato-Definisce lo spazio fra le celle.
frame void
above
below
hsides
lhs
rhs
vsides
box
border
Deprecato-utilizzato in combinazione con l'attributo border, specifica il lato della struttura che costituisce il bordo della tabella verrĂ  visualizzato.
rules none
groups
rows
cols
all
Deprecato-Used in conjunction with the border attribute, utilizzato in combinazione con l'attributo border, specifica che regole appaiono fra le celle della tabella.
summarytextDeprecato-Indica un riassunto del contenuto.
width pixels o %Deprecato-Imposta la larghezza della tabella.

Attributi Evento

Questo tag supporta tutti gli attributi evento descritti in - HTML - Referenze Eventi

Compatibilità Browser

ChromeFirefoxIEOperaSafariAndroid
SiSiSiSiSiSi
html_tags_reference.htm
Advertisements