Hide scrollbar but still scrollable in CSS
i try ::-webkit-scrollbar { display: none; }
this is working only Google Chrome but i want all browser
so please help me?
Hide scrollbar but still scrollable in CSS
i try ::-webkit-scrollbar { display: none; }
this is working only Google Chrome but i want all browser
so please help me?
I tried this on Firefox, Chrome, and Opera using CSS only. All work fine with it.
* {
/* hide scrollbar for firefox */
scrollbar-width: none;
}
/* hide scroll bar for chrome and opera */
::-webkit-scrollbar {
display: none;
width: 0px;
}