I'm having a problem with IE8. I got a ribbon IMG over another. When I drop shadow the conteiner DIV of both IMGs, absolute positioned ribbon gets cut by conteiner borders.
Here's the HTML:
<div class="news shadow">
<img class="image" src="">
<img src="ribbon.png" class="ribbon">
</div>
Here's the style definition:
div.news{
position:relative;
background:white;
width:50%;
margin-left:25%;
margin-bottom:3em;
margin-top:1em;
z-index: 10;
clear: both;
}
.shadow{
-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=6, Direction=135, Color='#000000')";
}
Here's the result in IE8:
Here's the expected result:
EDIT: added jsfiddle in https://jsfiddle.net/xk3wz4fd/1/
Thanks for your help.
Cheers!