Prevent “overscrolling” of web page

前端 未结 8 2396
星月不相逢
星月不相逢 2020-11-28 01:23

In Chrome for Mac, one can \"overscroll\" a page (for lack of a better word), as shown in the screenshot below, to see \"what\'s behind\", similar to the iPad or iPhone.

8条回答
  •  清酒与你
    2020-11-28 02:08

    Try this way

    body {
        height: 100vh;
        background-size: cover;
        overflow: hidden;
    }
    

提交回复
热议问题