*
: all elementsdiv
: divsdiv *
: all elements within a divdiv, span
: divs and spansdiv > span
: span that has a parent divdiv + span
: span preceded by a div.class
: elements of class "class"div.class
: divs of class "class"#itemid
: elements with id "itemid"div#itemid
: divs with id "itemid"p[attr]
: p with with attribute "attr"p[attr=x]
: p when attribute "attr" is "x"p[attr~=x]
: p when attribute "attr" is a list containing "x"p[attr|=x]
: p when attribute "attr" begins with "x":first-child
: the first child element:nth-child(3)
: the third child element