Answers for "how to place scroll bar in style"

CSS
0

custom scrollbar css

/* transparent scrollbar */
div::-webkit-scrollbar {
  width: 12px;
}

div::-webkit-scrollbar-thumb {
  border: 2px solid #ffffff2f;
  border-radius: 20px;
}
Posted by: Guest on March-03-2022

Code answers related to "how to place scroll bar in style"

Browse Popular Code Answers by Language