w3 css scrollbar code example
Example: scrollbar css
.any-class::-webkit-scrollbar {
width: 8px;
}
.any-class::-webkit-scrollbar-track {
background: #c1c0c0;
}
.any-class::-webkit-scrollbar-thumb {
background: #828282;
}
.any-class::-webkit-scrollbar-thumb:hover {
background: #555;
}