Deactivate or remove the scrollbar on HTML

前端 未结 5 876
温柔的废话
温柔的废话 2020-12-14 02:04

I want to de-activate or remove the vertical scrollbar in an HTML page.
How to do that ?

Thanks.

5条回答
  •  春和景丽
    2020-12-14 02:30

    This makes it so if before there was a scrollbar then it makes it so the scrollbar has a display of none so you can't see it anymore. You can replace html to body or a class or ID. Hope it works for you :)

    html::-webkit-scrollbar {
        display: none;
    }
    

提交回复
热议问题