GUIDE Unifies Inclusive Design Essentials

Les tableaux

Un tableau basique avec <table>, <tr> et <td>

<table>
    <tr>
      <td>Thomas Berriot</td>
      <td>La pratique de la musique</td>
      <td>43</td>
    </tr>
    <tr>
      <td>Cédric Blanchard</td>
      <td>L’escalade, la moto</td>
      <td>36</td>
    </tr>
    <tr>
      <td>Alexis Janvier</td>
      <td>La Low-tech et les livres</td>
      <td>48</td>
    </tr>
    <tr>
      <td>Thomas Maziere</td>
      <td>La sculpture du bois, la coutellerie</td>
      <td>45</td>
    </tr>
</table>

Thomas Berriot La pratique de la musique 43
Cédric Blanchard L’escalade, la moto 36
Alexis Janvier La Low-tech et les livres 48
Thomas Maziere La sculpture du bois, la coutellerie 45

En tête, corps, pied et légende avec <thead>, <tboby>, <tfoot> et <caption>

<table>
  <caption>
    Les salariés INCAYA en novembre 2024
  </caption>
  <thead>
    <tr>
      <th scope="col">Personne</th>
      <th scope="col">Passion</th>
      <th scope="col">Age</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <th scope="row">Thomas Berriot</th>
      <td>La pratique de la musique</td>
      <td>43</td>
    </tr>
    <tr>
      <th scope="row">Cédric Blanchard</th>
      <td>L’escalade, la moto</td>
      <td>36</td>
    </tr>
    <tr>
      <th scope="row">Alexis Janvier</th>
      <td>La Low-tech et les livres</td>
      <td>48</td>
    </tr>
    <tr>
      <th scope="row">Thomas Maziere</th>
      <td>La sculpture du bois, la coutellerie</td>
      <td>45</td>
    </tr>
  </tbody>
  <tfoot>
    <tr>
      <th scope="row" colspan="2">Age moyen</th>
      <td>43</td>
    </tr>
  </tfoot>
</table>

Les salariés INCAYA en novembre 2024
Personne Passion Age
Thomas Berriot La pratique de la musique 43
Cédric Blanchard L’escalade, la moto 36
Alexis Janvier La Low-tech et les livres 48
Thomas Maziere La sculpture du bois, la coutellerie 45
Age moyen 43

Accessibilité

Un gros morceau !

https://developer.mozilla.org/fr/docs/Web/HTML/Element/table

https://www.w3.org/WAI/tutorials/tables/caption-summary/