css disable overflow x code example
Example 1: hide horizontal scrollbar css
.x-scroll-disabled {
overflow-x: hidden;
}
Example 2: how to keep page from scrolling sideways
html, body {
max-width: 100%;
overflow-x: hidden;
}
.x-scroll-disabled {
overflow-x: hidden;
}
html, body {
max-width: 100%;
overflow-x: hidden;
}