Class Selectors
ID Selectors
Universal Selectors
Element Type Selectors
*Two <ul> elements and a <div>. The CSS will apply only to the two <ul> elements, and not to the <div>
Descendant Selectors
*The only element that’ll be affected by those styles is the first <div> element that has a class of box. The <div> element that has a class of case won’t be affected by the styles. The second <div> element with a class of box won’t be affected because it’s not inside an element with an ID of container.
Attribute Selectors