Whatever method I try, the scrollbar track is displayed and hides the content underneath. I would like to see the content underneath - not to be confused with always seeing the track.
I still want to see the thumb.
Ideal result: http://lab.cubiq.org/iscroll/examples/simple/
Things I tried:
::-webkit-scrollbar-track {
display: none !important;
}
Does not work, scrollbar track still displayed, hiding the content beneath.
::-webkit-scrollbar-track-piece:start {
background: transparent url('http://myServer/transparent.png') repeat-y !important;
}
::-webkit-scrollbar-track-piece:end {
background: transparent url('http://myServer/transparent.png') repeat-y !important;
}
Same story
::-webkit-scrollbar-track {
background:transparent;
border-radius: 0px;
}
Does not work