Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> table { border-collapse: collapse; width: 100%; } th, td { padding: 10px; text-align: left; border-bottom: 1px solid #cccccc; } </style> </head> <body> <h2>Horizontal dividers example</h2> <table> <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>$350</td> </tr> <tr> <td>Mary</td> <td>Watson</td> <td>$500</td> </tr> </table> </body> </html>