I'm trying to get transparency to work in IE8. All of the solutions I've seen are for the background color, but I'm trying to get it to work for the foreground color.
I want to get this effect in IE8 (the colors are user generated so an approximate mixed color solution won't work as these aren't the target colors)
HTML:
<div>testing</div>
<span>testing</span>
CSS:
div {
color: rgba(255, 0, 0, .5);
}
span {
color: red
}
body {
background: green;
}