CSS-cascade Flashcards
What are the four components of “the Cascade”.
Inheritance, source-order, specificity, importance
What does the term “source order” mean with respect to CSS?
Source order is, simply put, the order that your CSS rules are written in your stylesheet. The styling provided for an element last in your stylesheet is the styling that will ultimately take effect.
How is it possible for the styles of an element to be applied to its children as well without an additional CSS rule?
Inheritance is the process by which certain CSS properties on a child HTML element can receive value from a parent element, if no CSS for that property is directly declared on the child element
List the three selector types in order of increasing specificity.
Type, class, ID
Why is using !important considered bad practice?
it makes debugging more difficult by breaking the natural cascading in your stylesheets