CSS tutorials: Scrollbars

If you want to define scrollbars for your layouts you should know that this hasn't influence at the view in Firefox. If you use Internet Expolorer all will be fine.

01. Open your stylesheet and have a look at the body-part.

02. Now you have to put the follwing code in the body-part. (The settings are the same as at the example images has.)

body
{
scrollbar-Arrow-Color: #FFFFFF;
scrollbar-Face-Color: #E05F5F;
scrollbar-DarkShadow-Color: #9D0E0E;
scrollbar-Track-Color: #F0AFAF;
scrollbar-Shadow-Color: #D83434;
scrollbar-Highlight-Color: #FFFFFF
scrollbar-3dLight-Color: #D41B1B;
}

This images makse clear which tag is used for what part of the scrollbars.

Back