Image CSS below. I need a red color heading with a #f2f2f2 shadow. It look ok in Chrome and Firefox but in IE it show litte black artifacts on the edges of every letter. Is there a better way to make this shadow?

h1 {
  color: red;
  text-shadow: 3px 3px 0px #f2f2f2;  
  filter: progid:DXImageTransform.Microsoft.dropshadow(color=#f2f2f2, offX=3, offY=3);
}
link|improve this question

40% accept rate
Got a screenshot? I don't have IE. Typically I would just say go with graceful degradation....if the client doesn't support text-shadow too bad for them :) Most IE-specific filters I've seen have weird side effects like this that are worse than not having the effect at all. – chovy Nov 1 '11 at 22:05
feedback

1 Answer

This is not an answer but I have the same problem...

I've isolated the issue in jsFiddle, have a look in Firefox and IE so you can see the strange black outline

http://jsfiddle.net/nerdess/sSSsX

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.