How to DISABLE scrollbar in webpage? (not HIDE scrollbar)

前端 未结 4 641
情歌与酒
情歌与酒 2021-01-08 01:17

using:

$(\'body,html\').css(\"overflow\",\"hidden\");

the scrollbar in the page was able to hide completely. But i want the scroll bar just

4条回答
  •  轮回少年
    2021-01-08 01:59

    OK here is the Working Code:

    body
    {
        position: fixed; 
        overflow-y: scroll;
        width: 100%;
    }
    

    I used it and its the same what you want.

提交回复
热议问题