[HTML] [tag] <caption>

<caption> (tag HTML) definisce la didascalia di una tabella.

attributi

speciali

Nessuno.

globali
Caricamento…

scheda tecnica

– Contenuto: nessuno
– Tipo: invisibile
– Intefraccia DOM: HTMLTableCaptionElement
– Supporto browser: totale

Sintassi

<table>
 <caption>[testo]</caption>
</table>

Default CSS

caption { 
  display: table-caption;
  text-align: center;
}

Esempio

<table>
  <caption>Didascalia</caption>
  <tr>
    <th>1</th>
    <th>2</th>
  </tr>
  <tr>
    <td>a</td>
    <td>b</td>
  </tr>
</table>

Didascalia
1 2
a b

Contenuti correlati

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

Fonti esterne

html, tag html

Related Articles

0 Comment

Rispondi