Example 1: DISABLE the Horizontal Scroll
html, body {
max-width: 100%;
overflow-x: hidden;
}
Example 2: hide scrollbar css
.scrollbar-hidden::-webkit-scrollbar {
display: none;
}
.scrollbar-hidden {
-ms-overflow-style: none;
scrollbar-width: none;
}
Example 3: hide horizontal scrollbar css
.x-scroll-disabled {
overflow-x: hidden;
}
Example 4: remove horizontal scrollbar css
overflow-x: hidden;
Example 5: hide scrollbar css
html {
overflow: scroll;
overflow-x: hidden;
}
::-webkit-scrollbar {
width: 0px;
::-webkit-scrollbar-thumb {
background: #FF0000;
}
Example 6: hide scrollbar html css
.hide-scrollbar::-webkit-scrollbar {
display: none;
}
.hide-scrollbar {
scrollbar-width: none;
-ms-overflow-style: none;
}
Comments
Post a Comment