Her

Home HTML and CSS Tutorials Basic CSS

Basic CSS

Author: Lindsay Coome Author's URL: www.killer-bunnies.com 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.

image 1
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>

Basic CSS
Custom Link Colors