how to hide scrollbar css code example
Example 1: hide scrollbar css
.scrollbar-hidden::-webkit-scrollbar {
display: none;
}
.scrollbar-hidden {
-ms-overflow-style: none;
scrollbar-width: none;
}
Example 2: css hide scrollbar but allow scroll
html {
overflow: scroll;
}
::-webkit-scrollbar {
width: 0px;
background: transparent;
}
Example 3: remove scrollbar css
.example::-webkit-scrollbar {
display: none;
}
.example {
-ms-overflow-style: none;
}
Example 4: hide horizontal scrollbar css
.x-scroll-disabled {
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: how to hide scrollbar css
body {
overflow-y: hidden;
overflow-x: hidden;
}