css how to hide horizontal scrollbar code example
Example 1: hide horizontal scrollbar css
.x-scroll-disabled {
overflow-x: hidden;
}
Example 2: how to stop a page from scrolling horizontally
overflow-x: hidden
Example 3: css hide scrollbar
// Sass Mixing
@mixin hideScrollbar {
&::-webkit-scrollbar {
width: 0 !important
}
-ms-overflow-style: none;
scrollbar-width: none;
}