/* Multiple Selectors */ H1,H2 {text-align:center} /* Contextual Selectors */ OL LI {list-style:upper-alpha; font-weight:bold;} OL OL LI {list-style:upper-roman; font-weight:normal; font-style:italic;} OL OL OL LI {list-style:decimal; font-style:normal;} /* Style Classes */ P.attention {font-style:oblique; font-variant:small-caps; font-weight:bold} P.notes {font-style:normal; color:red; margin-left:1.5cm;margin-right:1.5cm; text-align:center} P.zoo {color:blue; border-style:dashed} LI.num {list-style:decimal; font-style:normal;font-weight:normal} /* Generic classes */ .fat-and-red {font-weight:bold; color:red; background-color:yellow} .nice {color:green;background-color:yellow} .very-nice {color:purple;font-size:larger} /* Using IDs as classes */ #redcolor {color :red} P#bluecolor {color :blue} /* Style pseudo-classes */ A.plain:link {color:gray} A.plain:active {color:red;font-weight:bold} A.plain:visited {color:green} P.bible:first-line {font-style:small-caps} P.bible:first-letter {font-size:200%;float:left}