iOS 7 iPad Safari Landscape innerHeight/outerHeight layout issue

后端 未结 13 911

We\'re seeing issues with a web app that has a height of 100% on Safari in iOS 7. It appears that the window.innerHeight (672px) doesn\'t match window.outerHeight (692px), b

13条回答
  •  孤城傲影
    2020-11-27 11:03

    The accepted answer doesn't cope when the favorites bar is showing. Here is am improved catch all fix:

    @media (orientation:landscape) {
      html.ipad.ios7 > body {
        position: fixed;
        height: calc(100vh - 20px);
        width:100%;
      }
    }
    

提交回复
热议问题