OK. I'm a bit lost here.
I took the CSS file and HTM file home last night and tried things out on my Win7/IE10 machine and I got things working. I bring the CSS file into work and put it in place and it doesn't work.
If I try this gradient sample in an sample HTM file it works.
<html><head>
<style type="text/css">
.css3gradient{width:300px;height:100px;
color:WHITE;
background-color:#579B60;
filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#579B60, endColorstr=#204A34);
background-image:-moz-linear-gradient(top, #579B60 0%, #204A34 100%);
background-image:-webkit-linear-gradient(top, #579B60 0%, #204A34 100%);
background-image:-ms-linear-gradient(top, #579B60 0%, #204A34 100%);
background-image:linear-gradient(top, #579B60 0%, #204A34 100%);
background-image:-o-linear-gradient(top, #579B60 0%, #204A34 100%);
background-image:-webkit-gradient(linear, right top, right bottom, color-stop(0%,#579B60), color-stop(100%,#204A34));}
</style>
</head><body>
<div class="css3gradient"><b>Here is the result</b></div>
</body>
</html>
However..... If I take some of the lines from the HTM file and replace them in my CSS file it doesn't work and still showed white text on a white background until I added the background-color line. Here's what code looks like in the current CSS file:
body {
font-family:arial;
font-size:10;
color:WHITE;
background-color:467B4D;
filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#579B60, endColorstr=#204A34);
background-image:-moz-linear-gradient(top, #579B60 0%, #204A34 100%);
background-image:-webkit-linear-gradient(top, #579B60 0%, #204A34 100%);
background-image:-ms-linear-gradient(top, #579B60 0%, #204A34 100%);
background-image:linear-gradient(top, #579B60 0%, #204A34 100%);
background-image:-o-linear-gradient(top, #579B60 0%, #204A34 100%);
background-image:-webkit-gradient(linear, right top, right bottom, color-stop(0%,#579B60), color-stop(100%,#204A34));}
}
Any idea why the CSS fails to render the gradient but with and the inline HTM code it works?