Safari font rendering issues

前端 未结 8 791
独厮守ぢ
独厮守ぢ 2020-12-09 02:12

As you can see below, the Texta-Light font in Chrome appears completely different with Safari. Chrome displays the font as I like but Safari\'s rendering on OS X and iOS loo

相关标签:
8条回答
  • 2020-12-09 02:47

    I had the same issue with font rendering on Safari, the browser couldn't cant find a bold version for the web font so it was trying to copy it which may vary in the bad rendering result.

    You can try to disable it by adding: this CSS:

    font-synthesis: none
    

    Otherwise you can try setting the font-weight manually to one which is available ie.

    font-weight: 400
    
    0 讨论(0)
  • 2020-12-09 02:48

    Work for me!!!

    .text{
           font-weight: unset;
           -webkit-text-stroke: thin;
    }
    

    Try it...!

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