I've used font-face with text shadow which looks good both in FF 3.6 and IE 8 in windows7. In windows XP, however, it looks ok in IE but the text is not clear in Firefox 3.6. It loads and its clear for a moment but it feels that when shadow is applied it makes the font result poor. Any ideas?

link|improve this question

64% accept rate
2  
i wonder how ot could look ok in IE. text-shadow is not supported by IE.. – meo Jan 17 '11 at 10:26
Issue likely with the font files used in the font-face. CSS code and links to the font files would help. – mVChr Jan 18 '11 at 23:43
1  
Windows sucks at font rendering. Nothing you can do about it. – BoltClock Jan 19 '11 at 8:03
@meo: It looks OK on IE precisely because IE can't apply any text shadow. – BoltClock Jan 19 '11 at 8:04
feedback

1 Answer

Try these lines of code

html
{
    text-rendering: optimizeLegibility;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
}

READ >> CSS Text-Rendering

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.