I want to de-activate or remove the vertical scrollbar in an HTML page. How to do that ?
scrollbar
Thanks.
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; }