Derniers tutoriels de développement web
 

HTML <table> align Attribute

<HTML <table> tag

Exemple

Un tableau HTML aligné à droite:

<table align="right">
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <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 align attribut spécifie l'alignement d'un tableau selon le texte environnant.

Normalement, une table HTML aura une pause avant et après. Le align attribut permet à d' autres éléments HTML à enrouler autour de la table.


support du navigateur

Attribut
align Oui Oui Oui Oui Oui

notes de compatibilité

Le align attribut de <table> est pas pris en charge HTML5. Utilisez CSS à la place.

CSS syntaxe: <table style="float:right">

CSS Exemple: alignement de table

Dans notre tutoriel CSS vous pouvez trouver plus de détails sur la float property .


Syntaxe

<table align="left|right|center">

Attribut valeurs

Valeur La description
left Gauche Aligne la table
right Droit aligne la table
center Centre aligne la table

<HTML <table> tag