HTML and CSS  Home HTML and CSS Tutorials Basic CSS
rss

Basic CSS

Author: Lindsay Coome More by this author


CSS stands for cascading style sheets, and can be used for many things. Below is the basic style sheet. It changes the link properties and the scrollbar style. To customize, just replace COLOR with your preferred colour. Style sheets should be placed in the <head> tag.

Colored Scrollbar
Colored Scrollbar

<STYLE type="text/css">
<!--
BODY {
scrollbar-face-color: COLOR;
scrollbar-highlight-color: COLOR;
scrollbar-3dlight-color: COLOR;
scrollbar-darkshadow-color: COLOR;
scrollbar-shadow-color: COLOR;
scrollbar-arrow-color: COLOR;
scrollbar-track-color: COLOR;
}
A:link {color: COLOR};}
A:visited {color: COLOR;}
A:active {color: COLOR;}
A:hover{color: COLOR;
background-color: COLOR;}
}
-->
</style>

Custom Link Colors
Custom Link Colors


Rate this Material: Bad 1 2 3 4 5 Excellent
print this page tell a friend subscribe to newsletter subscribe to rss

Add comments to "Basic CSS"