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> table, th, td { bordure: 1px solide noir; } </style> </head> <body> <table> <thead> <tr> <th>Mois</th> <th>Économies</th> <th rowspan="3">Économies pour les vacances !</th> </tr> </thead> <tbody> <tr> <td>Janvier</td> <td>$100</td> <td rowspan="0">$100</td> </tr> <tr> <td>Février</td> <td>$80</td> </tr> </tbody> </table> <p><b>Remarque :</b>Cet exemple démontre rowspan="0". Cela fonctionne dans Chrome, Firefox et Opera.</p> </body> </html>