CSS: Disable font ligatures in all browsers

pachamaltese picture pachamaltese · Aug 12, 2016 · Viewed 12.2k times · Source

As google fonts are blocked in China I had to download them and use FontSquirrel for conversion.

The problem: fi/ff/etc are ugly

I did all of the steps here Prevent ligatures in Safari (Mavericks/iOS7) via CSS but no cigar.

How can I disable ligatures at once? -webkit-font-variant-ligatures: no-common-ligatures; Doesn't work

Answer

beardofprey picture beardofprey · Nov 1, 2017

Essentially the same answer that andreas offered, but here's the full CSS for easy reference:

* {
font-variant-ligatures: none;
}