Prevent “overscrolling” of web page

前端 未结 8 2392
星月不相逢
星月不相逢 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 01:59

    html,body {
        width: 100%;
        height: 100%;
    }
    body {
        position: fixed;
        overflow: hidden;
    }
    

提交回复
热议问题