Height 100% on html/body is not working on iPhone

后端 未结 4 631
天涯浪人
天涯浪人 2021-01-18 04:53

I have created a responsive website using Foundation with a footer that is absolutely positioned on the bottom of the page. On my desktop browsers, it looks exactly like it

4条回答
  •  自闭症患者
    2021-01-18 05:21

    You can also make a screen specific style

    @media screen {
      html, body {
         height: 100vh;
      }
    }
    

    More about media queries here http://cssmediaqueries.com/what-are-css-media-queries.html

提交回复
热议问题