RoboHELP Tip - October 2000

This month you learn to implement two essential Cascading Style Sheet elements in your HTML documents: Active and Hover elements. These two elements compliment each other and can be implemented in your project in a matter of minutes.

What is a style sheet? A style sheet is a document that defines a set of rules.  The rules define how certain elements on an HTML page will appear.  Most of you are familiar with template styles such as Heading 1, Normal, Body Text, etc.  These same formatting elements are used in HTML Cascading Style Sheets and can be controlled by setting up specific "rules".

Style sheets follow rules

A typical rule may look something like:

H3 {font-family: Arial;
font-style: italic;
color: blue }

An element can also have a Class:

Pseudo-Classes are another element which we will be using in this month's tip:

There's much, much more to cascading style sheets than what I've described.  If you're interested in learning more I encourage you to go to the World Wide Web Consortium web site at: http://www.w3.org/Style/CSS/.  This site should satisfy most questions regarding CSS.

Next, Implementing Active Elements