我遇到了IE8的问题。我在另一个上面有一条丝带 IMG。当我在两个 IMG 的容器 DIV 上放置阴影时,绝对定位的色带会被容器边界切割。
这是HTML:
<div class="news shadow">
<img class="image" src="">
<img src="ribbon.png" class="ribbon">
</div>
这是样式定义:
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')";
}
这是 IE8 中的结果:
这是预期的结果:
编辑:在https://jsfiddle.net/xk3wz4fd/1/中添加了 jsfiddle
谢谢你的帮助。
干杯!