Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Enregistrer le code
Ctrl+Alt+A
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <head> <style> table,th,td { bordure:1px solide noir; } caption { affichage: table-caption; text-align: center; } </style> </head> <body> <p>Un élément de légende est affiché comme ceci :</p> <table> <caption>Économies mensuelles</caption> <tr> <th>Mois</th> <th>Économies</th> </tr> <tr> <td>Janvier</td> <td>$100</td> </tr> <tr> <td>Février</td> <td>$50</td> </tr> </table> <p>Changez les paramètres CSS par défaut pour voir l'effet.</p> </body> </html>