In Internet Explorer 8, it seems that pseudo-elements do not 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 know how I can fix this, so I have a template with opacity 0.10.
source
share