What are the four components of “the Cascade”.
What does the term “source order” mean with respect to CSS?
Order of the rules down the page. (lower it is the more important it is).
How is it possible for the styles of an element to be applied to its children as well without an additional CSS rule?
Use Inheritance from the parent.
usually font style is inherited and others are not IN GENERAL
List the three selector types in order of increasing specificity.
element type < class < id
Why is using !important considered bad practice?
It will make debugging more difficult. (Avoid it as much as you can!!!)