0
How to remove automatic bottom scrolbar from my webage?
How to solve this problem
1 Answer
0
/* On Chrome */
.hide-scrollbar::-webkit-scrollbar {
display: none;
}
/* For Firefox and IE */
.hide-scrollbar {
scrollbar-width: none;
-ms-overflow-style: none;
}