/ Code Css caption-side | Résultat du code Css caption-side | Copie d'écran / J'ai vu une erreur dans cette page

Exemple de code de la propriété CSS caption-side.

<style type="text/css">
.captiont {
   : top; 
}
.captionb {
   : bottom; 
}
.captionr {
   : right; 
}
.captionl {
   : left; 
}

.ex-caption { border: 1px solid #ccc }
</style>
<table width="100" border="1" class="captiont">
<CAPTION class="ex-caption">
Légende caption-side : top
</CAPTION>
 <tr>
  <td> </td>
  <td> </td>
  <td> </td>
 </tr>
</table>
<br>
<table width="100" border="1" class="captionb">
<CAPTION class="ex-caption">
Légende caption-side : bottom
</CAPTION>
 <tr>
  <td> </td>
  <td> </td>
  <td> </td>
 </tr>
</table>
<br>
<table width="100" border="1" class="captionl">
<CAPTION class="ex-caption">
Légende  caption-side : left
</CAPTION>
 <tr>
  <td> </td>
  <td> </td>
  <td> </td>
 </tr>
</table>
<br>
<table width="100" border="1" class="captionr">
<CAPTION class="ex-caption">
Légende  caption-side : right
</CAPTION>
 <tr>
  <td> </td>
  <td> </td>
  <td> </td>
 </tr>
</table>
<br>
<table width="100" border="1">
<CAPTION class="ex-caption captiont">
Légende avec class  caption-side : top
</CAPTION>
 <tr>
  <td> </td>
  <td> </td>
  <td> </td>
 </tr>
</table>
<br>
<table width="100" border="1">
<CAPTION class="ex-caption captionb">
Légende avec class  caption-side : bottom
</CAPTION>
 <tr>
  <td> </td>
  <td> </td>
  <td> </td>
 </tr>
</table>
<br>
<table width="100" border="1">
<CAPTION class="ex-caption captionl">
Légende avec class caption-side : left
</CAPTION>
 <tr>
  <td> </td>
  <td> </td>
  <td> </td>
 </tr>
</table>
<br>
<table width="100" border="1">
<CAPTION class="ex-caption captionr">
Légende avec class caption-side : right
</CAPTION>
 <tr>
  <td> </td>
  <td> </td>
  <td> </td>
 </tr>
</table>

Interprétation du code de la propriété caption-side CSS par votre navigateur.

Légende caption-side : top
     

Légende caption-side : bottom
     

Légende caption-side : left
     

Légende caption-side : right
     

Légende avec class caption-side : top

Légende avec class caption-side : bottom

Légende avec class caption-side : left

Légende avec class caption-side : right

Interprétation normale du code de la propriété CSS caption-side (copie d'écran).

copie d'écran de l'affichage de la propriété CSS caption-side