[HTML] [tag] <td>

<td> (tag HTML) crea, annidato all’interno del tag HTML <tr> (suo padre necessario), la cella di una riga di una tabella (table data).

attributi

speciali

Caricamento…

Caricamento…

Caricamento…

globali
Caricamento…

scheda tecnica

– Categoria: nessuna
– Tipo: [in costruzione]
– Intefraccia DOM: HTMLTableDataCellElement
– Supporto browser: totale

Sintassi

<table>
 <tr>
  <td>[oggetto]</td>
 </tr>
<table>

Default CSS

td {
  display: table-cell;
  vertical-align: inherit;
}

Esempio

<table>
  <tr>
    <td>Cella 1</td>
    <td>Cella 2</td>
  </tr>
  <tr>
    <td>Cella 3</td>
    <td>Cella 4</td>
  </tr>
</table>

Cella 1 Cella 2
Cella 3 Cella 4

Contenuti correlati

  • CSS
  • HTML
  • JavaScript
  • jQuery
  • PHP
  • SQL
  • WORDPRESS

Fonti esterne

html, tag html

Related Articles

0 Comment

Rispondi