How to reduce font weight in Firefox on Mac with CSS?

后端 未结 7 1910
走了就别回头了
走了就别回头了 2020-12-24 02:51

Here\'s my problem: I\'m using font-face for the menu of my website, but Firefox on Mac displays it too bold On a PC, everything works well, the font is perfectly sized and

7条回答
  •  一向
    一向 (楼主)
    2020-12-24 03:21

    FireFox posted a resolution to this today on their bug forum. It was just finalized today so won't be in use for a while, but we should all put

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    

    in our body tag to reset this for all browsers. FINALLY!! man, that made my day! This should come out in the next FF release.

    thread here https://bugzilla.mozilla.org/show_bug.cgi?id=857142

提交回复
热议问题