css - Customizing scrollbar with arrows (not arrow buttons) -


i have question regarding custom scrollbars in browsers. need make arrows @ start , end of thumb of scrollbar. trying ::-webkit-scrollbar-thumb:start , ::-webkit-scrollbar-thumb:end , making custom style has no effect on scrollbar itself. should work in webkit browsers @ least, cross-browser support ideal.

here quick idea, arrows should on both ends of thumb... hope, can me.

https://www.dropbox.com/s/q3rg98iwhjshr4z/scroll.png

::-webkit-scrollbar {   width: 15px; }  ::-webkit-scrollbar-track {   background-color: #eee; } ::-webkit-scrollbar-thumb {   background-color: #aaa; }   ::-webkit-scrollbar-thumb:hover {   background-color: #ccc; } ::-webkit-scrollbar-corner {   background-color: black; }  

what need customizing start , end of thumb?


Comments

Popular posts from this blog

c++ - CryptStringToBinary API behavior -

c++ - Correct method for redrawing a layered window -

java.util.scanner - How to read and add only numbers to array from a text file -