Answers for "horizontal scroll bar hide css"

4

hide horizontal scrollbar css

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

hide scroll bar

html {
    overflow: scroll;
    overflow-x: hidden;
}
::-webkit-scrollbar {
    width: 0;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}
/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
    background: #FF0000;
}
Posted by: Guest on July-07-2021

Code answers related to "horizontal scroll bar hide css"

Browse Popular Code Answers by Language