Direct Selectors

p: all <p> elements
:not(p): all elements that are not <p>
:root: the document's root element
.cn: all elements with class="cn"
p.cn: all <p> elements with class="cn"
#id: the element with id="id"
ul#id: all <ul> elements with id="id"
*: all elements
div > *: all child elements of all <div>s