I'm facing an issue with styling table rows that have alternating classes - I want to highlight the row that is being hovered on using CSS.
Below is the CSS code I have implemented:
.gridrowclass1 {
background-color : #bbb00b
}
.gridrowclass1:hover {
background-color: bisque;
}
.gridrowclass2 {
background-color: #d18915;
}
.gridrowclass2:hover {
background-color: bisque;
}
While this setup works smoothly in Chrome, it's not working in Firefox 3.6.18. I am unsure if I made a mistake in my approach or if it's due to the version of Firefox I am using. Unfortunately, I cannot test this on any other browser at the moment. My searches online didn't provide me with any clues that I might have missed. If this doesn't work, my last resort would be to use onMouse* events, but I'd prefer to avoid that.