Answers for "how to remove scrollbar bar but allow scrolling"

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
2

css remove scrollbars

overflow-y: hidden; /* Hide vertical scrollbar */
  overflow-x: hidden; /* Hide horizontal scrollbar */
Posted by: Guest on February-24-2021

Code answers related to "how to remove scrollbar bar but allow scrolling"

Browse Popular Code Answers by Language