Possible Duplicate:
Opacity of background, but not the text
I have a HTML unordered list. I need the background to have an opacity of "0.3". But I don't want this opacity applied to the text. Here is my current CSS; it renders the text as having an opacity of 0.3 as well:
li {
background-color:pink;
opacity: 0.3;
}
a {
color: white;
opacity: 1.0;
}
How do make the link text render white?