Answers for "how to turn off the scrollbar in css"

CSS
9

how to remove scrollbar in css

::-webkit-scrollbar {
    display: none;
}
Posted by: Guest on August-16-2021
0

how to eliminate scroll bar in html

html { overflow-y: hidden; }
Posted by: Guest on March-23-2020

Code answers related to "how to turn off the scrollbar in css"

Browse Popular Code Answers by Language