Answers for "overflow scroll hide horizontal scrollbar"

4

hide horizontal scrollbar css

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

how to hide scrollbar overflow

html {
overflow: scroll;
overflow-x: hidden;
}
::-webkit-scrollbar {
width: 0px; /* 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 August-14-2021

Code answers related to "overflow scroll hide horizontal scrollbar"

Browse Popular Code Answers by Language