What are the four components of “the Cascade”.
source order
Inheritance
specificity
!important
What does the term “source order” mean with respect to CSS?
the order that your CSS rules are written in your stylesheet
How is it possible for the styles of an element to be applied to its children as well without an additional CSS rule?
Inheritance
List the three selector types in order of increasing specificity.
Inline styles have highest specificity
Why is using !important considered bad practice?
it makes debugging more difficult by breaking the natural cascading in your stylesheets.