Custom scrollbar colorsAuthor: CSS Drive
In IE5.5+ and above, you can use CSS to customize the color of the scrollbars on the page, which includes various components of the scrollbar. The below CSS shows the relevant CSS properties for scrollbar coloring. Note that if your page uses a doctype that triggers a "Strict" mode in IE, the scrollbar properties need to be assigned to the "HTML" tag instead of the conventional "BODY" in order to work.
The CSS (for non "strict" doctypes):
body{
scrollbar-face-color:#EBF5FF;
scrollbar-base-color:#EBF5FF;
scrollbar-arrow-color:black;
scrollbar-track-color:#F3F3F3;
scrollbar-shadow-color:#EBF5FF;
scrollbar-highlight-color:#EBF5FF;
scrollbar-3dlight-color:#78AAFF;
scrollbar-darkshadow-Color:#78AAFF;
}
The CSS (for "strict" doctypes):
html{
"
"
}
esta muy buena esta tabla
Annoucement: I'm looking for a few news posters. Interested?
| CSS Forums: latest threads | Last Post Info |
|---|---|
| Looking for CSS freelancers to outsource work to (26) | 12/03/2008 06:16 am |
| Shared SSL Certificate by hosting company - is that fine? (2) | 12/02/2008 11:53 pm |
| spacing with the UL tag (1) | 12/01/2008 11:11 am |
| My Website (5) | 12/01/2008 08:15 am |
| CSS code coloring (4) | 11/29/2008 11:32 pm |