html - Hide scroll bar, but while still being able to scroll - Stack Overflow

PHOTO EMBED

Thu Apr 13 2023 11:03:12 GMT+0000 (Coordinated Universal Time)

Saved by @Shivam_Verma #css

.container {
    overflow-y: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
}
.container::-webkit-scrollbar { /* WebKit */
    width: 0;
    height: 0;
}
content_copyCOPY

https://stackoverflow.com/questions/16670931/hide-scroll-bar-but-while-still-being-able-to-scroll