@font-face for custom fonts, fonts not smooth in Chrome

前端 未结 7 659
谎友^
谎友^ 2021-02-01 21:08

I have a web application that is using CSS3\'s @font-face to embed custom fonts. So far this has works perfectly in IE and Firefox.

With Chrome, however, the custom fo

7条回答
  •  终归单人心
    2021-02-01 21:31

    I would suggest using this:

    -webkit-text-stroke: 0.3pt;
    -webkit-font-smoothing: antialiased;
    

提交回复
热议问题