Prevent Address-Bar hiding in mobile Browsers

前端 未结 7 1387
野趣味
野趣味 2020-11-30 04:20

I\'m currently working on a website with a horizontal layout. All elements are position:absolute with javascript. Their size is calculated with window.innerHeight. My Proble

相关标签:
7条回答
  • 2020-11-30 04:48

    Use this style code on your page.Now your chrome url bar will not hide.It'll stop scrolling.

    <style type="text/css">
      html, body {margin: 0; height: 100%; overflow: hidden}
    </style>
    
    0 讨论(0)
提交回复
热议问题