Is there a way to customize webkit scrollbars using CSS3?
I am referring to the following properties:
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}
This is an example of my div tag:
<div class="scroll"></div>
Below is my current CSS style:
.scroll {
width: 200px; height: 400px;
overflow: hidden;
}