Her

Home HTML and CSS Tutorials Scrollbar Colouring

Scrollbar Colouring

Author: Ian Author's URL: www.80four.co.uk More by this author

Using CSS you can change the colours of scrollbars that appear at the edge of pages, text areas and frames. The below CSS defines these colours. Different parts of the scrollbar have different names (explained below). To change the colours simply change the 6 digit colour code (#000000 in the example).

body {
scrollbar-3dlight-color: #000000;
scrollbar-arrow-color:#000000;
scrollbar-darkshadow-color: #000000;
scrollbar-face-color:#000000;
scrollbar-highlight-color:#000000;
scrollbar-shadow-color: #000000;
scrollbar-track-color: #000000;
}

Scrollbar Colouring

Note This effect only works in Internet Explorer.