css-cascade Flashcards
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, the value of the property is inherited by child elements
List the three selector types in order of increasing specificity.
Type, class, id, !important
Why is using !important considered bad practice?
Because it affects specificity, it can be confusing for other people who are using or working on the code. You should be able to use source order to do what is needed.