I have a div with this scroll see the image here
but i want this type of scroll for my div see the image here
I have a div with this scroll see the image here
but i want this type of scroll for my div see the image here
You can checkout the below URL https://www.w3schools.com/howto/howto_css_custom_scrollbar.asp
I'm not sure if all web browsers react the same way, but you can try this:
<style>
/* width */
::-webkit-scrollbar {
width: 20px;
}
/* Track */
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px grey;
border-radius: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: red;
border-radius: 10px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #b30000;
}
</style>
Source : https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_custom_scrollbar2