Possible Duplicate:
Opacity CSS not working in IE8
So I've been trying to get the opacity working in IE8 (not really IE8 more like the IE8 browser mode in IE9) and for some reason the opacity isn't getting applied. Here's what I have for the CSS.
nav a:hover {
color: #fff;
background: none;
}
nav a:hover:after {
height: 100%;
width: 100%;
position: absolute;
top: 0px;
left: 0px;
z-index: 1;
background: #fff;
content: '';
/* IE8 Sucks Balls */
opacity: 0.10;
filter: alpha(opacity=10);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=10);
display: block;
zoom: 1;
}