iPad layout scales up when rotating from portrait to landscape

前端 未结 11 1443
萌比男神i
萌比男神i 2020-12-02 04:32

I have a added to the \"viewport\" meta tag \"width=device-width,initial-scale=1.0\" and on an iPad the page loads up fine in landscape mode, the i

11条回答
  •  温柔的废话
    2020-12-02 05:06

    When you say it scales the page up, is that all elements, or just the text font size?... For fixing the font size you can use:

    html {
        -webkit-text-size-adjust: 100%;
    }
    

提交回复
热议问题