Answers for "hide scroll but still scrollable"

CSS
3

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

Code answers related to "hide scroll but still scrollable"

Browse Popular Code Answers by Language