Answers for "disable horizontal scroll"

5

DISABLE the Horizontal Scroll

html, body {
    max-width: 100%;
    overflow-x: hidden;
}
Posted by: Guest on November-24-2019
4

hide horizontal scrollbar css

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

Code answers related to "disable horizontal scroll"

Browse Popular Code Answers by Language