Derniers tutoriels de développement web
 

HTML <tfoot> charoff Attribute

<HTML <tfoot> tag

Exemple

Aligner le contenu à l' intérieur du <tfoot> élément deux caractères à droite de la "." personnage:

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

Définition et utilisation

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

Le charoff attribut définit le nombre de caractères du contenu à l' intérieur du <tfoot> é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

<tfoot 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 <tfoot> tag