Scrollbar Disable

If you are wondering how to disable the scrollbars on the right and bottom of the page in HTML, you should definitely read this article.
We can achieve this with a very simple method. You need to go inside the body tag and add the following parameter at the end:
<body style=”overflow-x:hidden”> If this parameter didn’t work for you, try
<body style=”overflow:hidden”>.
Another method in this regard is a few additions or even corrections to be made in the CSS or style file. Just type the following code and parameters between the <HEAD></HEAD> tags:
<style type=”text/css”>
BODY { overflow:-moz-scrollbars-vertical; overflow-x:hidden; overflow:-moz-scrollbars-vertical; overflow-y:hidden;}
</style>
You can disable horizontal or vertical scrollbars by using one of these 3 different methods I wrote above.




