IE8 不透明度会砍掉背景图像
我在使用 IE8 时遇到一个小问题。
我有以下小提琴: http://jsfiddle.net/H577j/
在此我有两个 div
和一个 h3
。 h3
具有背景图像,同时以 margin
进行负向移动。 h3
标签所在的 div
具有不透明度,由 filter
、-ms-filter
制成,和 CSS 中的不透明度
。 不透明度在所有浏览器中都可以正常工作,但是在 IE8 中,h3
标记的背景图像被隐藏。
IE8 会砍掉盒子之外的东西吗?或者还有什么问题吗?
I have a small problem with IE8.
I have the following fiddle: http://jsfiddle.net/H577j/
In this I have two div
and a h3
. The h3
has got a background image and is at the same time shifted negatively with margin
.
The div
that the h3
tag is inside has an opacity, made with both filter
, -ms-filter
, and opacity
in CSS.
The opacity works fine in all browsers, however, in IE8 the background image of the h3
tag is hidden.
Does IE8 chop off anything outside the box? Or is there something else wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试删除 IE 不透明度过滤器。我注意到,当您将过滤器应用于 IE 中的框时,它会自动截断框内跨越框外的所有内容。
Try removing the IE opacity filter. I noticed that when you apply a filter to a box in IE, it automatically chops everything inside the box that spans outside of the box.