6
Q:

css hide scrollbar but allow scroll

/* Hide scrollbar for Chrome, Safari and Opera */
.any-element::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE and Edge */
.any-element {
  -ms-overflow-style: none;
} 
1
html {
  overflow:   scroll;
}
::-webkit-scrollbar {
    width: 0px;
    background: transparent; /* make scrollbar transparent */
}
1
 overflow: hidden;
0

New to Communities?

Join the community