Responsive website on iPhone - unwanted white space on rotate from landscape to portrait

前端 未结 12 1572
挽巷
挽巷 2020-11-29 22:21

I am creating a responsive website, and have just noticed a strange behaviour in my content pages when viewed on the iPhone. It scales correctly when loaded in portrait mode

12条回答
  •  日久生厌
    2020-11-29 23:10

    Fixed! Had a similar problem. Fixed it by setting the width to a current device width.

    body, html {
      max-width: 100vw;
      margin: 0 auto;
      overflow-x: hidden;
    }
    

提交回复
热议问题