Answers for "how to avoid horizontal scroll in web page"

5

DISABLE the Horizontal Scroll

html, body {
    max-width: 100%;
    overflow-x: hidden;
}
Posted by: Guest on November-24-2019
1

how to stop a page from scrolling horizontally

overflow-x: hidden
Posted by: Guest on April-18-2020
0

css how to prevent horizontal scrolling

body {
    overflow-x: hidden !important;
}
.container {
    max-width: 100% !important;
    overflow-x: hidden !important;
}
Posted by: Guest on February-18-2021
0

avoid side scrolling css

html, body { max-width: 100%; overflow-x: hidden; }.
Posted by: Guest on October-15-2021

Code answers related to "how to avoid horizontal scroll in web page"

Browse Popular Code Answers by Language