avoid horizontal scrolling css code example
Example 1: DISABLE the Horizontal Scroll
html, body {
max-width: 100%;
overflow-x: hidden;
}
Example 2: css how to prevent horizontal scrolling
body {
overflow-x: hidden !important;
}
.container {
max-width: 100% !important;
overflow-x: hidden !important;
}