Answers for "overflow scroll without showing scrollbar"

CSS
1

i used overflow-y : scroll but the scroll bar keep on showing

::-webkit-scrollbar {
  display: none;
}
Posted by: Guest on December-27-2020
-1

hide the scrollbar in css if not overflow

.myClass {
  /*auto will remove and add the scroll bar as needed*/
  overflow: auto;
}
Posted by: Guest on September-30-2020

Code answers related to "overflow scroll without showing scrollbar"

Browse Popular Code Answers by Language