Selectors (2)
Pseudo element selectors
first-line and first-letter
elementName:first-line ... p:first-line { color : blue }
Selector groups
List of selectors separated by commas
The contents of the list can be any selectors
h1, h2, h3, h4 { text-decoration : underline }
Other selectors, not yet widely available in browsers
Child (div>strong {} ), First child (p:first-child {}), Adjacent (ol +
p {}), Attribute (a[title~="value"]{})...
To learn more about selectors : http://westciv.com/style_master/academy/css_tutorial/selectors/index.html