CSS-cascade-Q&A Flashcards

1
Q

What are the four components of “the Cascade”.

A
  1. Source Order
  2. Inheritance
  3. Specificity
  4. !important

Priority order (Highest to lowest)

  1. !important
  2. Specificity
  3. Source Order
  4. Inheritance
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

List the three selector types in order of increasing specificity.

A
  1. Element name
  2. Class
  3. ID
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Why is using !important considered bad practice?

A

Hard to debug, hard to override, and can cause issues with cascading

How well did you know this?
1
Not at all
2
3
4
5
Perfectly