Disable Scrolling on Body

后端 未结 4 1259
一向
一向 2020-12-12 12:44

I would like to disable scrolling on the HTML body completely. I have tried the following options:

  • overflow: hidden; (not working,

4条回答
  •  天涯浪人
    2020-12-12 13:21

    Set height and overflow:

    html, body {margin: 0; height: 100%; overflow: hidden}
    

    http://jsfiddle.net/q99hvawt/

提交回复
热议问题