Answers for "scrollbar styling with css examples"

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

Browse Popular Code Answers by Language