Change Password

How can you style every alternate row of a table to have a gray background?
tr:nth-child(even) { background-color: #eee; }
tr:even { background-color: #eee; }
table tr:nth-of-type(even) { background-color: #eee; }
tr:nth-row(even) { background-color: #eee; }