简单的透明背景兼容性问题

发布于 2024-12-01 09:14:47 字数 157 浏览 3 评论 0原文

CSS 类中的以下代码是否与所有常见浏览器完全兼容?

背景:#000; -moz-不透明度:.50;过滤器:alpha(不透明度=50); opacity:.50

我只是想知道是否应该使用这个或半透明 gif 来实现灯箱风格的效果。

Would the following code in a CSS class be fully compatible with all the common browsers?

background:#000;
-moz-opacity:.50; filter:alpha(opacity=50); opacity:.50

I'm just wondering if I should use this or a translucent gif to achieve a lightbox style effect.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

自我难过 2024-12-08 09:14:47

我想你应该尽可能使用半透明的 gifpng 来实现这种类型的效果。因为只有现代浏览器支持 css3 规范,因为这还不是 CSS 标准。

I suppose you should use translucent gif or png to achieve this type of effects as far as it is possible. Because only modern browser support css3 specifications as this is not yet a CSS standard.

枉心 2024-12-08 09:14:47

我认为 IE6(甚至可能是 IE7?)与 alpha 不透明度滤镜不兼容。为了向后兼容,您应该坚持使用透明图像。

我会先尝试你的方法,然后检查旧浏览器的兼容性,以防切换到透明图像。

I think IE6 (maybe even IE7?) are not compatible with alpha opacity filter. For backward compatibility you should stick to a transparent image.

I would try your method first, then check for old browsers compatibility and in case switch to a transparent image.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文