开发者

Issues with @font-face on Firefox 3.6.13?

开发者 https://www.devze.com 2023-01-31 06:54 出处:网络
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 shou

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

0

精彩评论

暂无评论...
验证码 换一张
取 消