Answers for "stop side scrolling css"

5

DISABLE the Horizontal Scroll

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

css stop scrollbar

html {
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
}

html::-webkit-scrollbar {
    width: 0px; /* For Chrome, Safari, and Opera */
}
Posted by: Guest on July-02-2020
1

how to stop a page from scrolling horizontally

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

avoid side scrolling css

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

Code answers related to "stop side scrolling css"

Browse Popular Code Answers by Language