CSS-cascade-Q&A Flashcards
1
Q
What are the four components of “the Cascade”.
A
- Source Order
- Inheritance
- Specificity
- !important
Priority order (Highest to lowest)
- !important
- Specificity
- Source Order
- Inheritance
2
Q
What does the term “source order” mean with respect to CSS?
A
The order CSS property sets the order to lay out an item in a flex or grid container. Items in a container are sorted by ascending order value and then by their source code order.
3
Q
How is it possible for the styles of an element to be applied to its children as well without an additional CSS rule?
A
Inheritance
4
Q
List the three selector types in order of increasing specificity.
A
- Element name
- Class
- ID
5
Q
Why is using !important considered bad practice?
A
Hard to debug, hard to override, and can cause issues with cascading