Answers for "how to hide scrollbar whileb eing able to scroll js"

CSS
2

css hide scrollbar but allow scroll

html {
  overflow:   scroll;
}
::-webkit-scrollbar {
    width: 0px;
    background: transparent; /* make scrollbar transparent */
}
Posted by: Guest on October-05-2020
0

jquery hide scrollbar but allow scrolling

/*For Webkit browsers e.g Chrome, Opera,Edge and safari*/
*::-webkit-scrollbar{
  display: none;
}
/*For firefox */
body{
  scrollbar-width: transparent;
}
Posted by: Guest on September-21-2020

Code answers related to "how to hide scrollbar whileb eing able to scroll js"

Browse Popular Code Answers by Language