HTML - Balise <caption>

La description

La balise HTML <caption> est utilisée pour créer une légende pour un tableau. Il ne peut y avoir qu'une seule légende par table.

Exemple

<!DOCTYPE html>
<html>

   <head>
      <title>HTML caption Tag</title>
   </head>

   <body>
      <h2>Cricketers List</h2>
      
      <table width = "100%">
         <caption>Indian Cricketers</caption>
         <th>Name</th>
         <tr>
            <td>Sachin Tendulkar</td>
         </tr>
         <tr>
            <td>M S Dhoni</td>
         </tr>
         <tr>
            <td>Suresh Raina</td>
         </tr>
         <tr>
            <td>Virat Kohli</td>
         </tr>
      </table>
      
   </body>
</html>

Cela produira le résultat suivant -

Attributs globaux

Cette balise prend en charge tous les attributs globaux décrits dans Référence des attributs HTML

Attributs d'événement

Cette balise prend en charge tous les attributs d'événement décrits dans HTML Events Reference

Prise en charge du navigateur

Chrome Firefox C'EST À DIRE Opéra Safari Android
Oui Oui Oui Oui Oui Oui