Css How To Prevent Horizontal Scrolling

css how to prevent horizontal scrolling
html, body {
max-width: 100%;
overflow-x: hidden;
}
css how to prevent horizontal scrolling
body {
overflow-x: hidden !important;
}
.container {
max-width: 100% !important;
overflow-x: hidden !important;
}

Leave a Comment