Many thanks to @EdwardLoveall for his reply and related link. This is my variation on his approach for more iOS-style scrolling (I use Lion + Chrome 19).
::-webkit-scrollbar { background-color: black; width: 1.25em ; } ::-webkit-scrollbar-thumb { background-color: rgba(255,255,255,0.33333); border: 0.25em solid black; border-radius: 1.25em ; }
As he noted, you cannot hide the track, but you can, but against this background. Creating a transparent background does not seem to work either because it is outside the HTML element, so there is only white below. Also, many properties like margin, padding, opacity, etc. do not seem to work, but you can add a thick border of the same color as the background to give the thumb a little breathing space.
source share