BULLET POINTS CSS contains simple statemlents, called rules.
Each rule provides the style for a selection of XHTML elements. A typical rule consists of a selector along with one or more properties and valu es. The selector specifies which elements the rule applies to. Each property declaration ends with a semicolon. All properties and values in a rule go between {} braces. You can select any element using its name as the selector. By separating element names with commas, you can select multiple elements at onc e. One of the easiest ways to include a style in HTML is the <style> tag. For XHTML and for sites of any complexity, you should link to an external style sheet. The <link> element is used to include an external style sheet. Many properties are inherited. For instance, if a property that is inherited is set for the <body> element, all the <body>'s child elements will inherit it. You can always override properties that are inherited by creating a more specifi c rule for the element you'd like to change. Use the class attribute to add elements to a class. Use a "." between the element name and the class name to select a specific eleme nt in that class. Use ".classname" to select any elements that belong to the class. An element can belong to more than one class by placing multiple class names in the class attribute with spaces between the names. You can validate your CSS using the W3C validator, at [Link] alidator.