disable x scroll css code example
Example 1: DISABLE the Horizontal Scroll
html, body {
max-width: 100%;
overflow-x: hidden;
}
Example 2: hide horizontal scrollbar css
.x-scroll-disabled {
overflow-x: hidden;
}
Example 3: css lock scroll
/* EXAMPLE */
body {
overflow: hidden; /*[to unlock scroll:overflow: visible;]*/
}
/*SYNTAX
overflow: hidden;
*/