Prev Demo
Table Stripped
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <style> table { width: 50%; } th, td { text-align: center; padding: 2px; } tr:nth-child(odd) { background-color: silver; color:blue } </style> </head> <body> <h2>Striped Table</h2> <table> <tr> <th>JAVASCRIPT</th> <th>BOOTSTARP</th> <th>RESULT</th> </tr> <tr> <td>20</td> <td>30</td> <td>50</td> </tr> <tr> <td>10</td> <td>80</td> <td>90</td> </tr> <tr> <td>2</td> <td>6</td> <td>8</td> </tr> <tr> <td>23</td> <td>25</td> <td>48</td> </tr> </table> </body> </html>
Note: We DO NOT save your trial code in our database.
Output