When I hovered over a table row in a specific part of the table, I would like the background to change to a linear gradient. CSS is simple:
tbody.row-links tr:hover { background: ...typical multi-browser linear gradient code... color: #333C3E; cursor: pointer; }
Works great in FF, Chrome, and Safari, but not in any version of IE. I know CSS is allowed because the color and cursor are changing. I tried placing the filter in a regular <tr> and doing nothing. IE ignores filter in table rows?
The best I can think of is to apply a gradient to the <td> line when the line freezes, but it causes a fine flicker when we talk about the line.
Now I just give IE a solid background color on hover. Has anyone else tried this and figured it out?
source share