Derniers tutoriels de développement web
 

HTML <thead> charoff Attribute

<HTML <thead> tag

Exemple

Aligner le contenu à l' intérieur des <thead> deux caractères à droite de la "M" caractère:

<table>
  <thead align="char" char="M" charoff="2">
    <tr>
      <th>Month</th>
      <th>Savings</th>
    </tr>
  </thead>
    <tr>
      <td>January</td>
      <td>$100</td>
    </tr>
    <tr>
      <td>February</td>
      <td>$80</td>
    </tr>
</table>
Essayez - le vous - même »

Définition et utilisation

Le <thead> charoff attribut est pas pris en charge HTML5.

Le charoff attribut définit le nombre de caractères du contenu à l' intérieur du <thead> élément sera aligné à partir du caractère spécifié par l' char attribut.

Le charoff attribut ne peut être utilisé si l' char attribut est spécifié et align attribut est réglé sur "char" .


support du navigateur

Attribut
charoff Non supporté Non supporté Non supporté Non supporté Non supporté

Syntaxe

<thead charoff="number">

Attribut valeurs

Valeur La description
number Indique l'alignement.
Les nombres positifs spécifie l'alignement à droite du caractère.
Les nombres négatifs spécifie l'alignement sur la gauche du caractère.

<HTML <thead> tag