I have make thin scrollbar in Firefox for this css:
scrollbar-width: thin;
scrollbar-color: rgba(155, 155, 155, 0.5) transparent;
it's worked for firefox.
Now i need to make thin scrollbar in chrome. I have tried this css
*-webkit-scrollbar {
width: 9px;
}
*-webkit-scrollbar-track {
background: transparent;
}
*-webkit-scrollbar-thumb {
background-color: rgba(155, 155, 155, 0.5);
border-radius: 20px;
border: transparent;
}
But this code does not work in chrome.
Any suggestion please.
Try this:-
::-webkit-scrollbar {
width: 9px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background-color: rgba(155, 155, 155, 0.5);
border-radius: 20px;
border: transparent;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With