HTML/CSS: table font size different in mobile device

前端 未结 3 990
天命终不由人
天命终不由人 2021-02-07 16:12

I would like to have a simple website that works both on desktop and mobile browser, and encountered a weird (rookie) problem: when I have a table whose column texts are of diff

3条回答
  •  栀梦
    栀梦 (楼主)
    2021-02-07 16:39

    Eventually you might also need

    text-size-adjust: none;
    -webkit-text-size-adjust: none;
    

    to make sure that text is not renderred bigger or smaller depending on the size of table cells. Especially in Safari on iOS I found this to be relevant.

提交回复
热议问题