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
You could try:
tr:hover { background-color: #000; } tr:hover td { background-color: transparent; /* or #000 */ }
JS Fiddle demo.