css - Creating custom scrollbar in IE -


i trying create custom scrollbar, managed work on chrome, opera, , firefox. however, struggling make work on ie. below code use

::-webkit-scrollbar {     width: 0.50em;     height: 2em  ::-webkit-scrollbar-button {     background: green; }   ::-webkit-scrollbar-track-piece {     background: blue; }  ::-webkit-scrollbar-thumb {     background: red;  }​ 

you'd better off using 3rd party library (or @ least taking inspiration one), here examples


Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -