There is a <tr>
with a background-color
(green) and some <td>
s override the row's background with its own (gradient). Most cells, however, have a background image (sorting arrows) for part of the cell along with a transparent background color. That's what I'm dealing with now.
All works fine in browsers except IE8. It shows those cells with a white background. When I open F12 Developer Tools and uncheck the background-color: transparent
property, the green from the <tr>
shows, like it should.
I cannot use the transparent image hack since we need background-color
for the sorting arrows.
How to get the <tr>
's green background to show through to the cells in IE8?