I have some images (in front of my bachground image) with low opacity (png format) and everything was fine in ie8 and firefox until I add pie.htc (or border-radious.htc from google code) for rounded corners and Shadow Box in ie8 ...
after adding pie.htc:
behaviour : url(pie.htc);
and adding below codes:
border-radius:15px; -moz-border-radius:15px; -webkit-border-radius:15px; box-shadow: 5px 5px 20px red; -moz-box-shadow: 5px 5px 20px red; -webkit-box-shadow: 5px 5px 20px red;
the opacity of my images has disappeared ...
I test it with a simple html project and find out when we use the shadow block, i.e. 8 (only that is, 8 and ff are fine) the shadow fills our entire element, so the opacity is reduced.
how can i fix this shadow problem + opacity?
==================================================== ===
MY QUESTION IN ONE WAY:
HOW CAN COMBINE BELOW CODES FOR IE8 (with preservation of opacity):
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)";//opacity filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=25);//opacity -ms-filter: "progid:DXImageTransform.Microsoft.dropShadow(attribute1=value1, attribute2=value2, etc)";//shadow
early
source share