-webkit-scrollbar consists of seven different pseudo-elements, and together comprise a full scrollbar UI element:
- ::-webkit-scrollbarthe background of the bar itself.
- ::-webkit-scrollbar-buttonthe directional buttons on the scrollbar.
- ::-webkit-scrollbar-trackthe empty space “below” the progress bar.
- ::-webkit-scrollbar-track-piecethe top-most layer of the the progress bar not covered by the thumb.
- ::-webkit-scrollbar-thumbthe draggable scrolling element resizes depending on the size of the scrollable element.
- ::-webkit-scrollbar-cornerthe bottom corner of the scrollable element, where two scrollbar meet.
- ::-webkit-resizerthe draggable resizing handle that appears above the scrollbar-corner at the bottom corner of some elements.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ::-webkit-scrollbar { width:4px; height:7px; } ::-webkit-scrollbar-track { -webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0.3); background-color:#F5F5F5; } ::-webkit-scrollbar-thumb { background-color:#000; border:2px solid #555; } |