I have successfully implemented a CSS-only method for highlighting table columns on hover from a tutorial I found at https://css-tricks.com/simple-css-row-column-highlighting/
However, I am encountering an issue with applying the highlight to striped tables using:
tr:nth-of-type(odd) {
background-color: #f0f0f0;
}
The highlighting does not work on the top and bottom cells within rows that already have a background color.
You can view an example of the problem here: http://jsfiddle.net/615avo4v/
If anyone knows how to resolve this without using JavaScript, please share your solution. Thank you!