Answers for "css no scroll but scrollbar visible"

CSS
2

css hide scrollbar but allow scroll

html {
  overflow:   scroll;
}
::-webkit-scrollbar {
    width: 0px;
    background: transparent; /* make scrollbar transparent */
}
Posted by: Guest on October-05-2020
1

css scrollbar always visible

html {
    overflow-y:scroll;
}
Posted by: Guest on May-27-2021

Code answers related to "css no scroll but scrollbar visible"

Browse Popular Code Answers by Language