Resources
helping you along the way
Knowledge is the foundation of all wisdom...
Resources >> Web workshops >> Scrollbar colours
Changing the colour of your scrollbars with CSS
This CSS style allows you to change the color of the browsers scroll bars. Play with the various combinations and see what you get! NB. This is not web standard compliant code.
<style type="text/css">
<!--
body
{
scrollbar-arrow-color: #3F0;
scrollbar-3d-light-color : #3CF;
scrollbar-base-color: #000;
scrollbar-face-color: #099;
scrollbar-dark-shadow-color : #006;
scrollbar-highlight-color: #CCC;
scrollbar-shadow-color: #000;
}
-->
</style>
