Answers for "stop website from scrolling css"

CSS
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

Code answers related to "stop website from scrolling css"

Browse Popular Code Answers by Language