Mysterious White Space at bottom of Web Page in Mobile-Chrome

后端 未结 5 1252
抹茶落季
抹茶落季 2021-01-12 11:59

I\'ve looked at many \"mysterious white-space at bottom of page\" issues here on SO, and played with the viewporttag many times, but I still cannot figure out w

5条回答
  •  再見小時候
    2021-01-12 12:37

    Add this on top of your css file :)

    html,body {
        width: 100%;
        height: 100%;
        margin: 0px;
        padding: 0px;
        overflow-x: hidden;
    }
    

    it fixed the bug for me.

提交回复
热议问题