I am currently implementing a drop-shadow
filter on a curved png, and while it works perfectly in most browsers, IE seems to be the exception.
You can see the issue with the boxes on this page: (Three boxes located just below 'Yoga Sequence Builder 3 in 1:')
This is the code I am using:
.curved::after {
content: "";
-webkit-filter: drop-shadow(0px 6px 3px rgba(0,0,0,0.12));
filter: drop-shadow(0px 6px 3px rgba(0,0,0,0.12));
width: 100%;
display: inline-block;
height: 40px;
position: absolute;
bottom: -39px;
left: 0;
}
Unfortunately, I need assistance in achieving the same effect in IE.
I have attempted to use:
filter: progid:DXImageTransform.Microsoft.Shadow
as well as:
filter: progid:DXImageTransform.Microsoft.DropShadow
Neither of these attempts have been successful :/