0

I want that the scollbar is hidden but you can still scroll.
if I now do:

body{
  overflow-y:hidden
}

the vertical scroll is hidden but you can't scroll.
my question: is there a way to hide the scrollbar but you can still scroll?

Vinc199789
  • 1,046
  • 1
  • 10
  • 31
  • http://stackoverflow.com/questions/1326570/how-can-i-disable-a-browser-or-element-scrollbar-but-still-allow-scrolling-with – Stacker-flow Nov 09 '14 at 13:55
  • thanks for your anwser. I will take a look at doing it with Jquery – Vinc199789 Nov 09 '14 at 13:58
  • The code you have given works just fine, by allowing scroll with no visible scroll bar vertically..! – cuSK Nov 09 '14 at 14:01
  • Here, it was answered without JQuery, using only CSS: http://stackoverflow.com/questions/13317364/remove-scrollbar-but-not-scrolling-functionality – Brother Nov 09 '14 at 14:12

1 Answers1

-1

You can try to add padding-right:20px; and overflow-x:hidden; to the overflowing element, hiding the scrollbar. Not sure if it works on body though.

myKaUs
  • 54
  • 1