jquery mobile default font size

前端 未结 5 1787
终归单人心
终归单人心 2021-02-06 03:03

I have the following code:





jQuery Mobile


        
5条回答
  •  伪装坚强ぢ
    2021-02-06 03:17

    I had the same issue as well until I used media queries with pixel density. The following worked great for me, which allowed text that was 20px on desktop to display as the same size to my eyes on mobile:

     @media screen and (-webkit-device-pixel-ratio: 2.0) {iPhone 5s, iPad Retina, etc.
            body {font-size: 48px;}
        }
    

提交回复
热议问题