Answers for "Hide scroll bar, but while still being able to scroll"

CSS
0

Hide scroll bar, but while still being able to scroll

.container {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}
.container::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}
Posted by: Guest on May-03-2022

Code answers related to "Hide scroll bar, but while still being able to scroll"

Browse Popular Code Answers by Language