Is there a way to make the CSS affect
<tr class="header">
with the class of header?
CSS
table.table-bordered tr:hover{
background-color: #C0C0A9;
}
table.table-bordered tr {
background-color: #C0C0D9;
}
Any suggestions on what I can change to make it work?
Would appreciate any help. Thank you!