how to prevent a body from scrolling left and right in css code example
Example: DISABLE the Horizontal Scroll
html, body {
max-width: 100%;
overflow-x: hidden;
}
html, body {
max-width: 100%;
overflow-x: hidden;
}