Freshman
Freshman

Reputation: 303

change background-color for a tr on hover

I want to change the background-color for a tr on hover, is there a way to select the rows thats going to be affected by that? At this point I'm using

tr:hover td{background:#EDEDED;}

But this changes the backcolor on every tr on my page. Is there a way to make the changes only apply for a tr with example class="change_on_over"

Upvotes: 5

Views: 6454

Answers (1)

rid
rid

Reputation: 63442

tr.change_on_over:hover td { background:#EDEDED; }

Upvotes: 5

Related Questions