Issues with @font-face on Firefox 3.6.13?
In the last day or two, Firefox rolled out its update to version 3.6.13. I restarted my browser today and now my sites that use an OTF font-face are not rendering the text with the custom font. I should note that it had worked fine in the pr开发者_StackOverflow中文版evious version of Firefox and continues to work fine in other browser platforms that support @font-face and OTF font formats.
Anyone else having this issue and is there a solution?
Thanks!
Example: Example of @font-face rendering issue
have you tried using Paul Irish's bulletproof @font-face syntax
@font-face {
font-family: 'FontName';
src: url('FontName.eot');
src: local('☺'),
url('FontName.otf') format('opentype');
}
or you can use the Font Squirrel generator
精彩评论