How to do font antialiasing in web page?

前端 未结 3 545
长情又很酷
长情又很酷 2021-02-13 20:58

I\'ve been working on how to perform font anti aliasing on web pages. Here\'re some solutions I found:

  • -webkit-font-smoothing attribute: It seems to w
3条回答
  •  误落风尘
    2021-02-13 21:16

    One approach as suggested here is to use the the CSS property text-shadow, like so:

    text-shadow: 0 0 1px rgba(51,51,51,0.5);
    

提交回复
热议问题