css no sidescroll code example
Example 1: remove horizontal scrollbar css
overflow-x: hidden;
Example 2: how to keep page from scrolling sideways
html, body {
max-width: 100%;
overflow-x: hidden;
}
overflow-x: hidden;
html, body {
max-width: 100%;
overflow-x: hidden;
}