Custom Scrollbar Using CSS

Custom Scrollbar Using CSS

<style>

/* width */

.verticlescroll::-webkit-scrollbar {
width: 20px;
}

/*Track */

.verticlescroll::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px grey; 
border-radius: 10px;
}

/*Handle */

.verticlescroll::-webkit-scrollbar-thumb {
background: red; 
border-radius: 10px;
}

/*Handle on hover */

.verticlescroll::-webkit-scrollbar-thumb:hover {
background: #b30000; 
}


</style>

Leave a Reply