Scroll Bar designing | CSS
CSS |
/*scrollbar styling*/
.content::-webkit-scrollbar{
width: 12px;
}
.content::-webkit-scrollbar-thumb{
border-radius: 8px;
background: -webkit-gradient(linear, left top, left bottom,
from(#1f456e), to(#1f456e));
box-shadow: inset 2px 2px 2px rgba(255, 255, 255, 0.25),
inset -2px -2px -2px rgba(0, 0, 0, 0.25);
border: 1px solid black;
}
.content::-webkit-scrollbar-track{
background: linear-gradient(to right, #201c29, #201c29, 1px, #f3e5ab , 1px ,#f3e5ab );
border-radius: 8px;
}
Comments
Post a Comment