asp.net - how can i change the style of scroll bar -
i have css code likes
.scrollpanel { height: 100px; width: auto; position: absolute; overflow: scroll; }
you can see example here ! want know how change style of scroll bar ?
how can set css style ?
as of there's no cross browser solution change scroll bars css only, alternatively can use jquery style them.
solution webkit browsers only
::-webkit-scrollbar { width: 12px; } ::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); border-radius: 10px; } ::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); }
Comments
Post a Comment