Answers for "delete horizontal scrollbar css"

18

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
4

remove horizontal scrollbar css

overflow-x: hidden;
Posted by: Guest on October-11-2020

Code answers related to "delete horizontal scrollbar css"

Browse Popular Code Answers by Language