Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> table, td, th { border: 1px solid black; } table { border-collapse: collapse; width: 100%; } th, td { text-align: right; } </style> </head> <body> <h2>Horizontal alignment example</h2> <table> <tbody> <tr> <th>Firstname</th> <th>Lastname</th> <th>Money</th> </tr> <tr> <td>Sherlock</td> <td>Holmes</td> <td>$200</td> </tr> <tr> <td>John</td> <td>Watson</td> <td>$250</td> </tr> <tr> <td>Mary</td> <td>Whatson</td> <td>$500</td> </tr> <tbody> </table> </body> </html>