Is it any way possible to do text shadows with current IE9 beta CSS?
So text shadows in FF and开发者_如何转开发 Chrome are grate. For example I have simple web page for simple video streaming server.. no shadows in IE9 for me(
my css code is like
p{color: #000;text-shadow: 0px 1px 1px #fff;padding-bottom:1em}
so I wonder - may be there is some JS of special CSS way for creating text shadows for IE?
filter: Shadow(Color=#666666,
Direction=135,
Strength=5);
Try this for ie
IE has shadow filter which should do what you want - http://msdn.microsoft.com/en-us/library/ms533086(VS.85).aspx
Text shadows are standard in CSS3: http://www.w3.org/Style/Examples/007/text-shadow.en.html
精彩评论