Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Colouring Scroll bars

Status
Not open for further replies.

stevet26

Programmer
Feb 9, 2005
53
Hi

Does anyone know if it is possible colour scroll bars on scrollable divs.

I have been looking around on Google and have come up with articles to make all scroll bars on a page different colours, but not just div's.

Aslo, does colouring scroll bars conform to web standards? As when I try this in Dreamweaver, it does not seem to offer the scrollbar options in its CSS predictive text.

Thanks in advance
 
Well, you can color the scrollbars in a div -but like Dan says, it only works in IE, so you shouldn't...

If you wanna see what it looks anyway, then try this styling:

Code:
.myDiv {
  height                       : 100px;
  width                        : 200px;
  overflow                     : scroll;
  background-color             : yellow;
  scrollbar-face-color         : fuchsia;
  scrollbar-highlight-color    : yellow;
  scrollbar-3dlight-color      : orange;
  scrollbar-darkshadow-color   : darkblue;
  scrollbar-shadow-color       : gray;
  scrollbar-arrow-color        : yellow;
  scrollbar-track-color        : aqua;
}

Regards


Jakob
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top