Answers for "how to hide horizontal scrollbar but keeping scroll"

CSS
3

css hide scrollbar but allow scroll

html {
  overflow:   scroll;
}
::-webkit-scrollbar {
    width: 0px;
    background: transparent; /* make scrollbar transparent */
}
Posted by: Guest on October-05-2020
4

hide horizontal scrollbar css

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

Code answers related to "how to hide horizontal scrollbar but keeping scroll"

Browse Popular Code Answers by Language