Has anyone been able to achieve transparency in IE8 for the foreground color, not just the background color? I've tried various solutions but they all seem to focus on the background color.
I need the transparency effect for user-generated colors, so I can't rely on a generic mixed color solution.
Here's the HTML code:
<div>testing</div>
<span>testing</span>
And the CSS:
div {
color: rgba(255, 0, 0, .5);
}
span {
color: red
}
body {
background: green;
}
Check out the code on http://jsfiddle.net/6L2DZ/