Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Sauvegarder le code
Ctrl+Alt+A
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <head> <style> thead {color:green;} tbody {color:blue;} tfoot {color:red;} table, th, td { bordure: 1px solide noir; } </style> </head> <body> <h1>Les éléments thead, tbody et tfoot - Stylés avec CSS</h1> <table> <thead> <tr> <th>Mois</th> <th>Économies</th> </tr> </thead> <tbody> <tr> <td>Janvier</td> <td>$100</td> </tr> <tr> <td>Février</td> <td>$80</td> </tr> </tbody> <tfoot> <tr> <td>Somme</td> <td>$180</td> </tr> </tfoot> </table> </body> </html>