Font weight turns lighter on Mac/Safari

前端 未结 5 615
半阙折子戏
半阙折子戏 2020-11-29 01:15

On my last website, the text is perfect naturally on chrome and firefox without touching font-smoothing or anything else.
But on Mac / Safari 7 the text appears well the

5条回答
  •  温柔的废话
    2020-11-29 01:35

    Try this:

    transform: translateZ(0.1px);
    

    Webkit browsers on Mac has known problem with antialiasing 2d and 3d text elements differently. Giving the 3d property to the element usually fixes the problem.

提交回复
热议问题