What are the four components of “the Cascade”?
Source order, Inheritance, Specificity, and !important
List the three selector types in order of increasing specificity.
Element > Class > Id
Why is using !important considered bad practice?
Breaks the natural cascading in stylesheet which makes debugging more difficult
How is it possible for the styles of an element to be applied to its children as well without an additional CSS rule?
Yes, through properties that can be inherited.
What does the term “source order” mean with respect to CSS?
Order that the CSS rules are written in your stylesheet.
CSS rules that are lower in the stylesheet has more priority .