Hide scroll bar, but while still being able to scroll

 Hide scroll bar, but while still being able to scroll:


::-webkit-scrollbar {
    width: 0px;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}
/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
    background: #FF0000;
}

Posting Komentar

0 Komentar