IE text shadow

I found a Stackoverflow article on creating a text shadow in IE: StackQuestion Now I tried all the “filters” there, and in IE9 the text becomes terrible (although the shadow shadow is displayed, the text is very distorted ...).

Does anyone know of the correct shadow shadow technique for IE? Even if it's just for IE9 ...

thank

+1
source share
3 answers

Check out this website: http://css3pie.com/

This is a plugin that allows you to use CSS3 in IE6-9

+3
source

Internet Explorer, IE crunky, . IE Chroma:

  • , , . , -, , -
  • ( IE , !)
  • CSS IE Chroma, ,
  • () !

jsfiddle ( IE8, IE9)

... IE8/9, IE9 IE8. , , , IE, , Chroma.

enter image description here

CSS. , Chroma, , , -ms-filter - Chroma Chroma ( ) :

.chroma-glow {
    background-color: #dfdfdf;
    -ms-filter: "progid:DXImageTransform.Microsoft.Chroma(Color=#dfdfdf)progid:DXImageTransform.Microsoft.Glow(color=ffffff,strength=4)";
}
.chroma-shadow {
    background-color: #dfdfdf;
    -ms-filter: "progid:DXImageTransform.Microsoft.Chroma(Color=#dfdfdf)progid:DXImageTransform.Microsoft.Shadow(direction=135,strength=2,color=ffffff)";
}

( ...)

  • block inline-block, inline.
  • position: relative; position: absolute;
    • ( , position: absolute; `position: relative; elements)
  • , . jQuery $elem.css('filter','progid...');, , . :
    • , .
    • , IE, IE.
+1
#element {  
    filter: glow(color=black,strength=5);  
}  
0
source

All Articles