CSS3 Scrollbar change style

/* Already with http://prefixr.com/ defined pattern */ /* Change the Scroolbar */ ::-webkit-scrollbar { width: 10px; height: 10px; } ::-webkit-scrollbar-button:start:decrement,::-webkit-scrollbar-button:end:increment { display: block; height: 0px; width: 0px; } ::-webkit-scrollbar-button:vertical:increment,::-webkit-scrollbar-button:horizontal:increment { background-color: transparent; } ::-webkit-scrollbar-track-piece { background-color: #ffffff; } ::-webkit-scrollbar-thumb:vertical { height: 50px; background-color: #022d44; } ::-webkit-scrollbar-thumb:horizontal { width: 50px; background-color: #022d44; } ::-webkit-scrollbar-thumb:hover { background-color: #d13b27; } ::-webkit-scrollbar-corner { background-color: #ffffff; }

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.