Striped Table Rows

Example creating striped rows using CSS.

Preview

Code

<style>
tr:nth-child(even){background:#f2f2f2;}
</style>

<table border="1">
<tr>
<th>Name</th>
<th>Age</th>
</tr>
<tr>
<td>Tom</td>
<td>28</td>
</tr>
<tr>
<td>Sara</td>
<td>22</td>
</tr>
</table>

More HTML Tables Examples (11)