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 { text-align: left; padding: 10px; } tr:nth-child(even) { background-color: #6eeccf; } tr:nth-child(odd) { background-color: #2d7f88; } </style> </head> <body> <h2>Striped table example</h2> <table> <tr> <th>First name</th> <th>Last name</th> <th>Points</th> </tr> <tr> <td>Sherlock</td> <td>Holmes</td> <td>$250</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>