I want to have my table rows highlighted on mouse over, but I have yet to find a way to do it that isn\'t using Javascript. Is this not possible in CSS?
I\'ve tried this
This will work:
tr:hover { background: #000 !important; }
If you want to only apply bg-color on TD then:
tr:hover td { background: #c7d4dd !important; }
It will even overwrite your given color and apply this forcefully.