Vyhľadajte odpoveď

Vyhnite sa podvodom s podporou. Nikdy vás nebudeme žiadať, aby ste zavolali alebo poslali SMS na telefónne číslo alebo zdieľali osobné informácie. Nahláste prosím podozrivú aktivitu použitím voľby “Nahlásiť zneužitie”.

Learn More

@font-face ligatures missing in Firefox 15

  • 4 odpovede
  • 4 majú tento problém
  • 9 zobrazení
  • Posledná odpoveď od 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.

Vybrané riešenie

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

-moz-font-feature-settings: "liga=0";
-moz-font-feature-settings: "liga" 0;
Čítať túto odpoveď v kontexte 👍 3

Všetky odpovede (4)

more options

Vybrané riešenie

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!