Hide address bar in mobile device browser

前端 未结 4 546
庸人自扰
庸人自扰 2020-12-29 05:15

I know 1 way of doing this.


...

But this works o

4条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-29 05:30

    Maybe you can set the minheight on the body bigger. 480px screen height in vertical mode + 60px address bar height = 540px.

    Example:

    body { min-height:540px; }     
    body[orient="portrait"] { min-height:540px; }
    body[orient="landscape"] { min-height:400px; }
    

提交回复
热议问题