faqts : Computers : Internet : Web : CSS

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

73 of 84 people (87%) answered Yes
Recently 8 of 10 people (80%) answered Yes

Entry

How Do I Change The Color Of My Scrollbar?

Mar 9th, 2001 06:38
Ben Gordon,


This is an IE only trick, but is very simple to use, just place the 
following code between the head tags of the page that you would like to 
change the scrollbar color of:
<style>
body {
scrollbar-base-color: white;
scrollbar-dark-shadow-color: white;
scrollbar-face-color: blue;
scrollbar-highlight-color: white;
scrollbar-shadow-color: black;
scrollbar-3d-light-color: white;
}
</style>

Then just change the colors for each property to match your site.