Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hide/remove scrollbar from <body> but allow scrolling

As per the title, is there a way to hide/remove the scrollbar from body (not a div, but the entire body) and keep the 'scrollable property' enabled? I've been trying different solutions in these days but nothing really worked.

Thank you in advance!

like image 726
GiS91 Avatar asked Oct 17 '25 05:10

GiS91


1 Answers

-webkit- solution from Fabian Schultz worked great, I added: -ms-overflow-style:none; to hide scrollbar on IE. Scroll enabled, scrollbar hidden.

This is the complete CSS:

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

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

body {
  -ms-overflow-style:none;
}
like image 166
wuzla Avatar answered Oct 18 '25 22:10

wuzla