0

enter image description here

I want to remove this white scroll space, but i'm not able to do this. I can't make the display none because after that it will not scrollable for some users having mouse.

"&::-webkit-scrollbar": {
            display: "none",
      },
  • does this help? https://stackoverflow.com/questions/16670931/hide-scroll-bar-but-while-still-being-able-to-scroll – TobyLoby Feb 24 '23 at 11:24

1 Answers1

2

For hide scroll in your page you must add this:

CSS:

body{
   overflow: hidden; 
}

And add js for blcok scroll with mouse :

function preventScroll(e){
    e.preventDefault();
    e.stopPropagation();

    return false;
}
document.querySelector('body').addEventListener('wheel', preventScroll);
IsKat
  • 64
  • 3