Derniers tutoriels de développement web
 

HTML span Attribute


Définition et utilisation

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


S'applique à

La span attribut peut être utilisé sur les éléments suivants:

Éléments Attribut
<col> span
<colgroup> span

Exemples

Col 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 »

Colgroup Exemple

Définissez la couleur des deux premières colonnes en utilisant l'arrière - plan <colgroup> attribut span:

<table>
  <colgroup span="2" style="background:red"></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>
  <tr>
    <td>5869207</td>
    <td>My first CSS</td>
    <td>$49</td>
  </tr>
</table>
Essayez - le vous - même »

support du navigateur

La span attribut a le support de navigateur suivant pour chaque élément:

Élément
col Oui Oui Oui Oui Oui
colgroup Oui Oui Oui Oui Oui