CSS-Cascade Flashcards

1
Q

What are the four components of “the Cascade”.

A

Source Order, Inheritance, Specificity, important! rule

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

It is the order in which your CSS rules are written and the last css rule written for an element is applied

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

Through inheritance specific properties can be applied to the children elements

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

Type Selector, Class Selector, Id Selector

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

It makes debugging difficult by disrupting the natural cascading of a CSS stylesheet

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