Hello !
Why the following fallback for IE color: red; does not work ?
In IE7, the color is black rather than red.
Live demo here
HTML:
<div>
<span>Hello</span>
</div> CSS:
div {
width: 200px;
height: 100px;
background-color: blue;
text-align: center;
}
span {
font-size: 2em;
color: red;
color: rgba(250, 250, 97, 0.9);
} Thanks a lot !!