Derniers tutoriels de développement web
 

HTML <col> span Attribute

<HTML <col> tag

Exemple

Ici, les deux premières colonnes doivent avoir une couleur rouge de fond:

<table>
  <colgroup>
    <col span="2" style="background-color:red">
    <col style="background-color:yellow">
  </colgroup>
  <tr>
    <th>ISBN</th>
    <th>Title</th>
    <th>Price</th>
  </tr>
  <tr>
    <td>3476896</td>
    <td>My first HTML</td>
    <td>$53</td>
  </tr>
</table>
Essayez - le vous - même »

Définition et utilisation

La span attribut définit le nombre de colonnes d' un <col> élément doit enjamber.


support du navigateur

Attribut
span Oui Oui Oui Oui Oui

Différences entre HTML 4.01 et HTML5

AUCUN.


Syntaxe

<col span="number">

Attribut valeurs

Valeur La description
number Définit le nombre de colonnes d' un <col> élément doit enjamber

<HTML <col> tag