Cascading Style Sheets (CSS)

Used to add visual effects to a website that can't be obtained through HTML.

Example: The CSS code for this page is:

<style type="text/css">
<!--
A:link { text-decoration: none; color:red}
(Specifies color of link)
A:visited { text-decoration: none; color:red}
(Specifies color of visited link)
A:hover { text-decoration: none; color:gray }
(Specifies color of link when mouse moves over it)
-->
</style>

<style type="text/css">
<!--
body
{
scrollbar-face-color : #CC0000;
(Specifies color of scrollbar)
scrollbar-highlight-color : red;
(Specifies color of highlights in scrollbar)
scrollbar-3dlight-color : #CC0000; scrollbar-shadow-color : white;
(Specifies color of 3d highlights in scrollbar)
scrollbar-darkshadow-color : white; scrollbar-track-color : white;
(Specifies color of shadows in scrollbar)
scrollbar-arrow-color : white
(Specifies color of arrows on scrollbar)
}
-->






[NEXT]