Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Titre du document</title> <style> table { width: 100%; border-collapse: collapse; } table, th, td { border: 1px solid #cccccc; } td { height: 100px; } .top { vertical-align: top; } .bottom { vertical-align: bottom; } </style> </head> <body> <h2>Exemple de la propriété vertical-align </h2> <table> <tr> <th>Bas</th> <th>Milieu</th> <th>Haut</th> </tr> <tr> <td class="bottom">Quelque texte</td> <td>Quelque texte</td> <td class="top">Quelque texte</td> </tr> </table> </body> </html>