Answers for "how to allow horizontal scrolling in css"

CSS
0

how to remove horizontal scrolling

/* this works for vertical scrolling also

this is useful for those who can't use overflow: hidden or any other solution
because the css on the website changes in someway */

::-webkit-scrollbar:horizontal {
  display: none;
}
Posted by: Guest on April-19-2021
0

css horizontal scroll

.scroll{
	overflow-x: scroll;
	overflow-y: hidden;
	height: 80px;
  	white-space:nowrap
}
Posted by: Guest on March-03-2021

Code answers related to "how to allow horizontal scrolling in css"

Browse Popular Code Answers by Language