how to override font boosting in mobile chrome

后端 未结 8 1120
面向向阳花
面向向阳花 2020-12-01 09:32

Is it possible to override font boosting in mobile chrome? I searched the internet before ~including stackoverflow~.

I found that some people say it\'s impossible, a

8条回答
  •  粉色の甜心
    2020-12-01 09:55

    Try text-size-adjust:

    html {
        text-size-adjust: none;
        -ms-text-size-adjust: none;
        -webkit-text-size-adjust: none;
        -moz-text-size-adjust: none;
    }
    

提交回复
热议问题