Answers for "reference webkit scrollbar in javascript"

CSS
0

change scrollbar color

.scrollable-element {
  scrollbar-color: red yellow; /* red is for the thumb and yellow is for the track */
}
Posted by: Guest on October-23-2020
0

style scrollbar table

table::-webkit-scrollbar{
    /*Your styles here*/
}
table::-webkit-scrollbar-thumb{
    /*Your styles here*/
}
table::-webkit-scrollbar-thumb:window-inactive{
    /*Your styles here*/
}
Posted by: Guest on November-28-2020

Code answers related to "reference webkit scrollbar in javascript"

Browse Popular Code Answers by Language