So I am trying to put a gradient background on a table, via a class:
.prov-results-bkgrd {
background: #fff url(/_images/prov-results-table-bg.jpg) left bottom repeat-x;
background: -webkit-gradient(
linear,
left top,
left bottom,
from(#fff),
to(#dedbd5)
);
background: -moz-linear-gradient(top, #fff, #dedbd5);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff', endColorstr='#dedbd5');
}
IE8 and FireFox look OK. They apply the gradients as I thought: from white, to a light beige.
However, IE7 applies the gradient from black to a dark blue??? WTF is up with that...?
Where would that come from? Does IE7 not recognize the hex colors?
And if it didn’t, wouldn’t it apply the default background, i.e. #fff and the image file??