CSS - côté légende

La description

La propriété caption-side détermine le placement de la zone d'élément d'une légende table.s.

Valeurs possibles

  • top - Place la zone d'élément de la légende au-dessus de la zone de tableau.

  • bottom - Place la zone d'élément de la légende sous la zone de tableau.

  • left - Place la zone d'élément de la légende à gauche de la zone de tableau.

  • right - Place la zone d'élément de la légende à droite de la zone de tableau.

S'applique à

Tout l'élément positionné en HTML.

Syntaxe DOM

object.style.captionSide = "left";

Exemple

Voici l'exemple qui montre l'effet de cette propriété -

<html>
   <head>
      <style type = "text/css">
         caption.top {caption-side:top}
         caption.bottom {caption-side:bottom}
         caption.left {caption-side:left}
         caption.right {caption-side:right}
      </style>
   </head>

   <body>
   
      <table style = "width:400px; border:1px solid black;">
         <caption class = "top">
            This caption will appear at the top
         </caption>
         <tr><td > Cell A</td></tr>
         <tr><td > Cell B</td></tr>
      </table>
      <br />
      
      <table style = "width:400px; border:1px solid black;">
         <caption class = "bottom">
            This caption will appear at the bottom
         </caption>
         <tr><td > Cell A</td></tr>
         <tr><td > Cell B</td></tr>
      </table>
      <br />
      
      <table style = "width:400px; border:1px solid black;">
         <caption class = "left">
            This caption will appear at the left
         </caption>
         <tr><td > Cell A</td></tr>
         <tr><td > Cell B</td></tr>
      </table>
      <br />
      
      <table style = "width:400px; border:1px solid black;">
         <caption class = "right">
            This caption will appear at the right
         </caption>
         <tr><td > Cell A</td></tr>
         <tr><td > Cell B</td></tr>
      </table>
      
   </body>
</html>

Cela produira le résultat suivant -