Hey,
I want to desactivate or remove the vertical scrollbar
in an HTML page.
Thanks.
Hey,
I want to desactivate or remove the vertical scrollbar
in an HTML page.
Thanks.
put this code in your html header:
<style type="text/css">
html {
overflow: auto;
}
</style>
What I would try in this case is put this in the stylesheet
html, body{overflow:hidden;}
this way one disables the scrollbar, and as a cumulative effect they disable scrolling with the keyboard