Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have some custom made webfonts embedded on my site and I use stuff like

//-webkit-text-stroke-width: .05px;
//-webkit-text-stroke-color: white;
-webkit-font-smoothing:antialiased;

to style my rendering output. This works just fine in Safari and Chrome. I get way sharper edges and thinner lines.

Is there any way of doing stuff like that in Firefox? Or Opera?

Thank you in advance.

share|improve this question
It would be a good idea to stop doing that and read why here: usabilitypost.com/2012/11/05/stop-fixing-font-smoothing – bfred.it Mar 18 at 14:44

1 Answer

Well, Firefox does not support something like that.

In the reference page from Mozilla specifies font-smooth as CSS property controls the application of anti-aliasing when fonts are rendered, but this property has been removed from this specification and is currently not on the standard track.

This property is only supported in Webkit browsers.

If you want an alternative you can check this:

share|improve this answer
Well, the problem I have is that my fonts look to "bold" and bloated in firefox and opera. With -webkit-font-smoothing:antialiased; I could fix it in Safari and Chrome. I'd love to find any "hack" to make my fonts a little bit lighter in Firefox as well. I thought of applying a white text-shadow to it in moz only but there is no way to apply a "inset" text-shadow that would make the font lighter. – matt Jul 12 '12 at 20:50
1  
@matt You can try some CSS advices in this question: stackoverflow.com/questions/761778/… Maybe you find some CSS alternative. – Jonathan Naguin Jul 12 '12 at 21:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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