Styles for even and odd table rows are set, but hovering over the table rows is not working.
Test it out here: http://jsfiddle.net/w7brN/
CSS style :
#table_even tr:hover { background-color:#fffbae!important; } /* hover effect */
#table_even tr:nth-child(odd) td { background-color:#fbfbfb } /* odd rows */
#table_even tr:nth-child(even) td { background-color:#e8ecee } /* even rows */
HTML Codes:
<table id="table_even" style="width: 100%">
<tr>
<td>##</td>
<td>##</td>
</tr>
<tr>
<td>##</td>
<td>##</td>
</tr>
<tr>
<td>##</td>
<td>##</td>
</tr>
</table>
How can this issue be resolved?