I need help with customizing scrollbars. How can I hide the scrollbar when it is not needed due to short content?
Below is the code snippet I have been working on:
.myscroll::-webkit-scrollbar {
width: 15px;
}
.myscroll::-webkit-scrollbar-track {
border-radius: 3px;
background-color:#D4D4D4;
}
.myscroll::-webkit-scrollbar-thumb {
border-radius: 3px;
background-color:#0085bf ;
}