0

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

M. Aleem
  • 21
  • 5

2 Answers2

0

You can checkout the below URL https://www.w3schools.com/howto/howto_css_custom_scrollbar.asp

Deepak Dev
  • 101
  • 1
  • 7
0

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

FS-GSW
  • 152
  • 9