从 IE 中删除 CSS3 文本阴影和框阴影
我仔细观察过,这似乎是一个很简单的问题。
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.
试试这个:
Try this :