How can i style webkit scrollbars with CSS3?
I mean these 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);
}
Here is my div tag
<div class="scroll"></div>
Here is my current CSS
.scroll {
width: 200px; height: 400px;
overflow: hidden;
}
overflow: hiddenhides any scrollbars, so there's nothing to decorate with CSS3. You have to make scrollbars visible withoverflow:scrolloroverflow:auto– keaukraine Sep 9 '12 at 9:07