CSS-CASCADE Flashcards

1
Q

What are the four components of “the Cascade”?

A
The four components of "the Cascade" are:
(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 makes it possible for the styles of an element to be applied to its children as well without an additional CSS rule.

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

The three selector types in order of increasing specificity are:

  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

Using “!important” is bad practice because it’s too powerful!

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