<div class="box">
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
</div>
.box {
width: 300px;
height: 200px;
border: 1px solid #000;
overflow: auto;
}
/* width */
::-webkit-scrollbar {
width: 15px;
}
/* Track */
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px #ddd;
border-radius: 15px;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: orange;
border-radius: 15px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #e30d00;
}