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; } </style> </head> <body> <h1>Aligner verticalement le contenu dans les lignes de tableau</h1> <table style="height:200px"> <tr style="vertical-align:top"> <th>Mois</th> <th>Économies</th> </tr> <tr style="vertical-align:bottom"> <td>Janvier</td> <td>$100</td> </tr> </table> </body> </html>