-1

I want to hide window scrollbar and I used this css style

body { overflow: hidden; }

but the problem here is the srcolling is disabled as well !

So, How to hide window scrollbar and make scrolling still working ?

Thanks is advance.

Muhammad Aref
  • 689
  • 5
  • 12

2 Answers2

1

Use the CSS

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

Here is a Demo

It scroll without scrollbar...

Sam1604
  • 1,407
  • 2
  • 15
  • 25
1

Please use:

body{ 
   height : 500px; 
   overflow : scroll;
}
NativeWebs
  • 63
  • 5