Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

@font-face ligatures missing in Firefox 15

  • 4 回覆
  • 4 有這個問題
  • 1 次檢視
  • 最近回覆由 lunatorium

more options

I am using an @font-face for my site, http://lunatorium.com/, and the fi and ff ligatures are not showing up.

This happened in past versions of Firefox and was corrected by adding -moz-font-feature-settings: "liga=0"; to the @font-face rule for the affected fonts, but since upgrading to Firefox 15, that fix no longer works. The fix is in place and the ligatures are not showing up, but ONLY in Firefox 15. All other browsers are fine.

I am using an @font-face for my site, http://lunatorium.com/, and the fi and ff ligatures are not showing up. This happened in past versions of Firefox and was corrected by adding -moz-font-feature-settings: "liga=0"; to the @font-face rule for the affected fonts, but since upgrading to Firefox 15, that fix no longer works. The fix is in place and the ligatures are not showing up, but ONLY in Firefox 15. All other browsers are fine.

被選擇的解決方法

The syntax has changed and is now "liga" 0;

-moz-font-feature-settings: "liga=0";
-moz-font-feature-settings: "liga" 0;
從原來的回覆中察看解決方案 👍 3

所有回覆 (4)

more options

選擇的解決方法

The syntax has changed and is now "liga" 0;

-moz-font-feature-settings: "liga=0";
-moz-font-feature-settings: "liga" 0;
more options

Thank you very much! Now is that retroactive to all past versions of Firefox, or should I use both the codes for backwards compatibility?

more options

You will need both codes for backward compatibility (Firefox 14 and earlier need the 'old' style).

more options

Thank you very much!