Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

@font-face ligatures missing in Firefox 15

  • 4 பதிலளிப்புகள்
  • 4 இந்த பிரச்னைகள் உள்ளது
  • 1 view
  • Last reply by lunatorium

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;
Read this answer in context 👍 3

All Replies (4)

தீர்வு தேர்ந்தெடுக்கப்பட்டது

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

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

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

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