Answers for "vertical scroll bar html"

7

custom scroll bar

/* width */
*::-webkit-scrollbar {
  width: 10px;
}

/* Track */
*::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
*::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
*::-webkit-scrollbar-thumb:hover {
  background: #555; 
}
Posted by: Guest on May-26-2020
1

scrollbar in html div

overflow in html
Posted by: Guest on March-06-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language