css3 text-shadow在IE9中 [英] css3 text-shadow in IE9

查看:188
本文介绍了css3 text-shadow在IE9中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有一个简单的方法让css3 text-shadow 在IE9中工作吗?至少一个文本阴影是巨大的。我想最好的IE8也支持。我希望有一个简单的jquery插件或.htc文件,它只是看一个元素的文本阴影css属性并实现它为IE9。

Is there an easy way to have css3 text-shadow's working in IE9? At least a single text shadow would be great. I guess ideally IE8 is supported as well. I'm hoping there's a simple jquery plugin or .htc file which just looks at text-shadow css property of an element and implements it for IE9.

推荐答案

是的,但不是你想象的。根据 caniuse (一个非常好的资源),没有支持和polyfill可用于添加 text-shadow 支持IE9。但是, IE有自己的专有文字阴影(

Yes, but not how you would imagine. According to caniuse (a very good resource) there is no support and no polyfill available for adding text-shadow support to IE9. However, IE has their own proprietary text shadow (detailed here).

示例实施,从他们的网站(从IE5.5到IE9工作):

Example implementation, taken from their website (works in IE5.5 through IE9):

p.shadow { 
    filter: progid:DXImageTransform.Microsoft.Shadow(color=#0000FF,direction=45);
}

为了跨浏览器兼容性和代码的面向未来, CSS3标准 text-shadow 属性(这里详述)。这是特别重要的考虑到IE10正式宣布他们的意图 drop支持旧版dx过滤器。未来,IE10 +将只支持CSS3标准 text-shadow

For cross-browser compatibility and future-proofing of code, remember to also use the CSS3 standard text-shadow property (detailed here). This is especially important considering that IE10 has officially announced their intent to drop support for legacy dx filters. Going forward, IE10+ will only support the CSS3 standard text-shadow.

这篇关于css3 text-shadow在IE9中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆