[HTML] [attributo] colspan

colspan (attributo base HTML) stabilisce il numero di celle della tabella da unire orizzontalmente cioè in colonna.

tag

valore

<td>

colspan = "[numero]"

<th>

Come sopra.

Esempio

<table>
  <tr>
    <td>1</td>
    <td>2</td>
    <td>3</td>
  </tr>
  <tr>
    <td colspan="2">1 e 2</td>
    <td>3</td>
  </tr>
    <tr>
    <td>1</td>
    <td>2</td>
    <td>3</td>
  </tr>
</table>

1 2 3
1 e 2 3
1 2 3

Contenuti correlati

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

Fonti esterne

attributi base html, html

Related Articles

0 Comment

Rispondi