Prevent ligatures in Safari (Mavericks/iOS7) via CSS

后端 未结 2 1514
南旧
南旧 2020-12-03 23:14

Is there any possibility to prevent Safari/Mobile Safari on Mavericks/iOS7 from rendering ligatures in a Webfont? We\'re facing issues with not available ligatures in the fo

相关标签:
2条回答
  • 2020-12-03 23:30

    More Recent (2018):

    The one that worked for us is stated in here: https://stackoverflow.com/a/47063000/1920145

    Refering to use the current state of the rule:

    font-variant-ligatures: none;
    
    0 讨论(0)
  • 2020-12-03 23:37

    We solved this by adding

     -webkit-font-variant-ligatures: no-common-ligatures;
    

    to the css styles. It prevents the ligatures from appearing and thus the broken symbols in the font.

    0 讨论(0)
提交回复
热议问题