从 IE 中删除 CSS3 文本阴影和框阴影

发布于 2024-12-10 23:07:05 字数 268 浏览 0 评论 0原文

我仔细观察过,这似乎是一个很简单的问题。

我正在使用 CSS3 阴影(框和文本),它确实破坏了 IE 中的可读性,所以我想删除此样式表中的所有阴影。我为 IE8 及更低版本设置了条件样式表。

我已经尝试过:

text-shadow: 0px 0px 0px transparent; 
filter: dropshadow(color=transparent, offx=0, offy=0);

但没有效果。有什么想法吗?

I've looked high and low and it seems like an easy enough question.

I am using CSS3 shadows (box and text) and it really destroys any readability in IE, so I want to just remove all shadows in this style sheet. I have a conditional style sheet set up for IE8 and below.

I've tried this:

text-shadow: 0px 0px 0px transparent; 
filter: dropshadow(color=transparent, offx=0, offy=0);

But to no avail. Any ideas?

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

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

发布评论

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

评论(2

我不在是我 2024-12-17 23:07:05

ie8 不理解 text-shadow 是什么,所以覆盖它是没有意义的。您的可读性问题可能源于多种原因:字体堆栈、cleartype 等。如果没有更多信息,很难说清楚。

ie8 doesn't understand what text-shadow is, so overriding it is pointless. your readability issues could stem from any number of things: font-stack, cleartype, etc. without more info, pretty hard to tell.

日暮斜阳 2024-12-17 23:07:05

试试这个:

filter: glow(color=black,strength=1);  
filter: progid:DXImageTransform.Microsoft.Shadow(direction=135,strength=1,color=#640800);
filter: progid:DXImageTransform.Microsoft.Glow(color=#640800,strength=2);

Try this :

filter: glow(color=black,strength=1);  
filter: progid:DXImageTransform.Microsoft.Shadow(direction=135,strength=1,color=#640800);
filter: progid:DXImageTransform.Microsoft.Glow(color=#640800,strength=2);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文