We Recommend

CSS: The Definitive Guide CSS: The Definitive Guide
Provides you with a comprehensive guide to CSS implementation, along with a thorough review of all aspects of CSS 2.1. Updated to cover Internet Explorer 7, Microsoft's vastly improved browser, this new edition includes content on positioning, text wrapping (nowrap), lists and generated content, table layout, user interface, paged media, and more.


Posted By

fugue on 12/29/06


Tagged


Versions (?)


Who likes this?

5 people have marked this snippet as a favorite

tavo
vali29
aziz
stoker
lorix


Scrollbar properties


Published in: CSS 


Not recommended, but sometimes a client can't be convinced otherwise.

  1. body {
  2. scrollbar-face-color: #cc0000;
  3. scrollbar-base-color: #000000;
  4. scrollbar-arrow-color: #ffffff;
  5. scrollbar-highlight-color: #999999;
  6. scrollbar-3d-light-color: #cccccc;
  7. scrollbar-shadow-color: #666666;
  8. scrollbar-dark-shadow-color: #333333;
  9. }

Report this snippet 

You need to login to post a comment.