Answers for "how to stop scrolling with css"

CSS
11

css how to prevent horizontal scrolling

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

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

Code answers related to "how to stop scrolling with css"

Browse Popular Code Answers by Language