IE 的文本不透明度不起作用

发布于 2025-01-03 17:26:58 字数 382 浏览 1 评论 0原文

#subNavGal {
    position:relative;
    width:180px;
    height:30px;
    top:-160px;
    left:285px;
    padding-top:20px;
    -webkit-transition:all linear 0.2s;
    -moz-transition:all linear 0.2s;
    -o-transition:all linear 0.2s;
    opacity:0.0;
    filter:alpha(opacity = 0);
}

应该将此 div 内的文本不透明度设置为 0 的 filter:alpha 不适用于该文本。关于如何进行这项工作有什么想法吗?

#subNavGal {
    position:relative;
    width:180px;
    height:30px;
    top:-160px;
    left:285px;
    padding-top:20px;
    -webkit-transition:all linear 0.2s;
    -moz-transition:all linear 0.2s;
    -o-transition:all linear 0.2s;
    opacity:0.0;
    filter:alpha(opacity = 0);
}

the filter:alpha that was supposed to set the text inside this div's opacity to 0 is not working on the text. any ideas on how to make this work?

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

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

发布评论

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

评论(2

听风念你 2025-01-10 17:26:58

您需要同时使用 filter-ms-filter 才能在所有 IE(5 及更高版本)版本上获得不透明度工作:

.opaque {
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; // first!
  filter: alpha(opacity=50); // second!
}

请参阅 opacity on PPK 了解详细信息

如果以前的 CSS 没有完成,也可能与元素的布局有关,尝试使用类似的东西缩放:1 至检查它是否与您元素的布局有关。

You need to use both filter and -ms-filter to get opacity work on all IE (5 and up) versions:

.opaque {
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; // first!
  filter: alpha(opacity=50); // second!
}

See opacity on PPK for details

It may also be related to layout of you element if previous CSS don't get it done try to use something like zoom:1 to check if it's related to layout of you element.

后eg是否自 2025-01-10 17:26:58

对于 ie,您将添加 0-100 之间的值,对于其他浏览器,您将在 0-1 之间添加值,例如:

[disabled] {
  opacity: 0.5;
  filter:progid:DXImageTransform.Microsoft.Alpha(opacity=55);
}

for ie you will add values between 0-100 for the other browsers between 0-1 for example:

[disabled] {
  opacity: 0.5;
  filter:progid:DXImageTransform.Microsoft.Alpha(opacity=55);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文