In Internet Explorer 8 it seems like the pseudo elements doesn't support opacity:
Example:
# div:after {
content: '';
background: red url('pattern.png') no-repeat left top;
position: absolute;
top: 0;
left: 0;
height: 300px;
width: 300px;
opacity: 0.10;
filter: alpha(opacity=10);
}
Does anyone have any idea how i can fix this, so i have the pattern with the opacity off 0.10.