Font-size <12px doesn't have effect in Google Chrome

后端 未结 15 1009
萌比男神i
萌比男神i 2020-12-02 14:21

Elements with css font-size <12px doesn\'t have effect in Google Chrome - remains font-size 12px.

What should I do?

My Google Chrome browser uses default

15条回答
  •  攒了一身酷
    2020-12-02 15:09

    -webkit-text-size-adjust is no longer working after Chrome 27.

    Try using transform to refuce font-size forcely.

    font-size:12px;
    transform: scale(0.833);/*10/12=0.833, font-size:10px*/
    

提交回复
热议问题