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

demo

::-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);  } 

credits


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -