Have you ever wondered: How many selectors does CSS have? Which selectors come from which version of CSS? How does each selector work? Me too! so here's what I found out with an example for each one. CSS 1 E → an element of type E div /* selects any div element in the document */E F → an F element descendant of an E element div p /* selects any p element that is a descendant of a div element */E.w