css cascade Flashcards

1
Q

What are the four components of “the Cascade”?

A
LOWEST
- Inheritance
- Source Order
- Specificity
- Important
HIGHEST
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 that the rulesets are declared. Last declared taking precedence.

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. They are inherited from their parents.

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

Element > Class > 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
  • No logic
  • You would have to repeat this for every instance
  • Hard to override
How well did you know this?
1
Not at all
2
3
4
5
Perfectly