0👍
To hide scroll bar on Chrome, Firefox and IE you can use this:
.hide-scrollbar
{
overflow: auto;
-ms-overflow-style: none; /* IE 11 */
scrollbar-width: none; /* Firefox 64 */
}
- [Vuejs]-How do i make the vue model reflect a change
- [Vuejs]-How do I scope nuxt-link-exact-active only for particular page in nuxt?
0👍
Perhaps this will help?
.your-class {
/*FireFox*/
scrollbar-width: none;
/*IE10+*/
-ms-overflow-style: -ms-autohiding-scrollbar;
}
.your-class::-webkit-scrollbar {
/*Chrome, Safari, Edge*/
display: none;
}
Source:stackexchange.com