I am a fan of ligatures in general, as they improve readability. I want to implement them across all my HTML pages.
However, there is this one word Hanftierheft
(which is German and a compound word made up of Hanf
, Tier
, and Heft
). I specifically do not want a ligature for the letters "nfti", but I do want one for "eft".
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro');
body {
font-family: 'Source Sans Pro', sans-serif;
font-variant-ligatures: normal;
font-size: 50px;
}
Hanftierheft
Is there a way to instruct my browser to use ligatures by default, but exclude them in specific cases like this?