Answers for "how to hide scroll bars but still scroll"

CSS
1

hide scroll bar

html {
    overflow: scroll;
    overflow-x: hidden;
}
::-webkit-scrollbar {
    width: 0;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}
/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
    background: #FF0000;
}
Posted by: Guest on July-07-2021
0

how to hide scrollbar html

<style type="text/css">
    body {
        overflow-y: hidden;
    }
</style>
Posted by: Guest on July-10-2021
0

hide scroll bar when not needed

overflow: auto;
Posted by: Guest on November-12-2020

Code answers related to "how to hide scroll bars but still scroll"

Browse Popular Code Answers by Language