CSS DropShadown in IE9
Reference http://www.useragentman.com/blog/2011/04/14/css3-text-shadow-can-it-be-done-in-ie-without-javascript/
A good way to perform text shadow in IE9:
background-color: 'white';
filter: progid:DXImageTransform.Microsoft.Chroma(Color='white')
progid:DXImageTransform.Microsoft.DropShadow(OffX=3, OffY=3, Color='white');
The point is to make use of Chroma filter and set a proper background-color. So great!
A good way to perform text shadow in IE9:
background-color: 'white';
filter: progid:DXImageTransform.Microsoft.Chroma(Color='white')
progid:DXImageTransform.Microsoft.DropShadow(OffX=3, OffY=3, Color='white');
The point is to make use of Chroma filter and set a proper background-color. So great!
Comments
Post a Comment