*
all elementsdiv
- all div tagsdiv,p
- all div's and paragraphsdiv p
- paragraphs inside div'sdiv > p
- all p tags, one level deep in divdiv + p
- p tags immediately after divdiv - p
- p tags immediately after divdiv ~ p
- p tags preceded by div.classname
- all elements with class#idname
- element with IDdiv.classname
- divs with certain classnamediv#idname
- div with certain ID#idname *
- all elements inside #idname
a:link
- link in normal statea:active
- link in clicked statea:hover
- link with mouse over ita:visited
- visited linkp::after{content:"yo";}
- add content after pp::before
- add content before pinput:checked
- checked inputsinput:disabled
- disabled inputsinput:enabled
- enabled inputsinput:focus
- input has focusinput:in-range
- value in rangeinput:out-of-range
- input value out of rangeinput:valid
- input with valid valueinput:invalid
- input with invalid valueinput:optional
- no required attributeinput:required
- input with required attributeinput:read-only
- with readonly attributeinput:read-write
- no readonly attrib.div:empty
- element with no childrenp::first-letter
- first letter in pp::first-line
- first line in pp:first-of-type
- first of some typep:last-of-type
- last of some typep:lang(en)
- p with en language attribute:not(span)
- element that's not a spanp:first-child
- first child of its parentp:last-child
- last child of its parentp:nth-child(2)
- second child of its parentp:nth-child(3n+1)
- nth-child (an + b) formulap:nth-last-child(2)
- second child from behindp:nth-of-type(2)
- second p of its parentp:nth-last-of-type(2)
- ...from behindp:only-of-type
- unique of its parentp:only-child
- only child of its parent:root
- documents root element::selection
- portion selected by user:target
- highlight active anchor
a[target]
- links with a target attributea[target="_blank"]
- links which open in new tab[title~="chair"]
- title element containing a word[class^="chair"]
- class starts with chair[class|="chair"]
- class starts with the chair word[class*="chair"]
- class contains chair[class$="chair"]
- class ends with chairinput[type="button"]
- specified input type