Font-Size for Button and Link

后端 未结 4 1970
生来不讨喜
生来不讨喜 2021-01-02 07:31

I tried this simple html:

TEST FONT SIZE
4条回答
  •  一生所求
    2021-01-02 07:37

    Had the same problem in Chrome, later figured out that key cause was

    body {
        -webkit-font-smoothing: antialiased
    }
    

    changing this to

    body {
        -webkit-font-smoothing: subpixel-antialiased;
    }
    

    fixed it.

提交回复
热议问题