Answers for "command to remove scroll in css"

CSS
22

remove scrollbar css

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

/* Hide scrollbar for IE and Edge */
.example {
  -ms-overflow-style: none;
}
Posted by: Guest on March-17-2020

Code answers related to "command to remove scroll in css"

Browse Popular Code Answers by Language