Hey there! I'm looking to customize my scroll bar to have a hidden track like this. Everyone's got their own style, right?
::-webkit-scrollbar{
width: 15px;
height: 40px;
}
::-webkit-scrollbar-thumb{
background-color: #DBDBDB;
border: 4px solid transparent;
border-radius: 11px;
background-clip: content-box;
}
::-webkit-scrollbar * {
background: transparent;
}
::-webkit-scrollbar-thumb:vertical {
height: 90px;
}
I tried it out and ended up with this result:
https://i.stack.imgur.com/sM45G.pngNow here comes the question - any ideas on how to achieve this effect using CSS or maybe even JS? Thanks in advance!