How to disable scrolling of body element?

前端 未结 1 997

How to disable scrolling of body? $(\'body\').css(\'overflow\',\'hidden\'); only hides the scrollbars but it does not disable the scrolling. I want to disable the s

相关标签:
1条回答
  • 2021-02-13 13:28

    Try this CSS, no jQuery needed for this:

    <style type="text/css">
        html { overflow: hidden; }
    </style>
    

    [UPDATE after comment]

    Try specifying the height of the body too:

    <style type="text/css">
        html, body { overflow: hidden; height: 100% }
        body { margin:0; padding:0; }
    </style>
    
    0 讨论(0)
提交回复
热议问题