Answers for "css how to hide horizontal scrollbar"

CSS
4

hide horizontal scrollbar css

.x-scroll-disabled {
	overflow-x: hidden;
}
Posted by: Guest on March-23-2020
1

how to stop a page from scrolling horizontally

overflow-x: hidden
Posted by: Guest on April-18-2020
1

css hide scrollbar

// Sass Mixing
@mixin hideScrollbar {
  &::-webkit-scrollbar {
    width: 0 !important
  }
  -ms-overflow-style: none;
  scrollbar-width: none;
}
Posted by: Guest on December-11-2020

Code answers related to "css how to hide horizontal scrollbar"

Browse Popular Code Answers by Language