Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Titre du document</title> <style> caption { background: #1c87c9; color: #fff; } .top caption { caption-side: top; } table, th, td { border: 1px solid #1c87c9; padding: 3px; } td { background-color: #ccc; color: #666; } </style> </head> <body> <h2>Exemple de la propriété caption-side</h2> <p>Ici la caption-side est définie à "top":</p> <table class="top"> <caption>Quelque titre ici</caption> <tr> <td>Quelque texte</td> <td>Quelque texte</td> </tr> </table> </body> </html>