循环见证透明背景在IE中不起作用
我正在使用 jquery 循环在我的网站上显示推荐,并希望将背景设置为透明。更改 CSS 后,背景在 FF、Safari、Chrome 和 Opera 中是透明的,但在 IE(特别是 8/9)中拒绝透明。我尝试了各种方法,包括使用透明背景 png/gif 但无济于事。
你可以在我的测试网站上看到这个
有人知道如何使其透明吗?或者使用另一个证词轮换员来代替,这将使透明度更容易处理。
谢谢
I'm using jquery cycle to display testimonials on my site and want to set the background to transparent. Having changed the CSS the background is transparent in FF, Safari, Chrome and Opera but refuses to be transaprent in IE (specifically 8/9). I've tried all manner of things including using a transparent background png/gif but to no avail.
You can see this on my test site
Does anyone know how to make it transparent? Or another testimony rotator to use instead that will make transparency easier to deal with.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题是IE将背景颜色设置为#fff;
如果您在 IE 中查看源代码,您将看到:
修复:将 !important 添加到您的 css 背景颜色规则中,以覆盖内联规则。
或者
The problem is IE set the background color to #fff;
If you do view source in IE, you will see:
The fix: add !important to your css background-color rule, to over-write the inline rule.
or