Answers for "how to hide scrollbar in html but still scroll"

CSS
36

hide scrollbar css

/* Hide scrollbar for Chrome, Safari and Opera */
.scrollbar-hidden::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge add Firefox */
.scrollbar-hidden {
  -ms-overflow-style: none;
  scrollbar-width: none; /* Firefox */
}
Posted by: Guest on July-01-2020
1

how to hide scrollbar css

hide scrollbar
Posted by: Guest on September-06-2021
0

hide scroll bar when not needed

overflow: auto;
Posted by: Guest on November-12-2020

Code answers related to "how to hide scrollbar in html but still scroll"

Browse Popular Code Answers by Language