CSS Flashcards

1
Q

What are the four components of “the Cascade”.

A

Source order, inheritance, specificity, and !Important

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 your CSS rules are written in your stylesheet

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

Type, 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

It makes debugging more difficult by breaking the natural cascading in your stylesheets

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

What are the names of the individual pieces of a CSS rule?

A

css rule set, css selector, css declaration, properties, values

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

In CSS, how do you select elements by their class attribute?

A

.class

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

In CSS, how do you select elements by their type?

A

with the element tag

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

In CSS, how do you select an element by its id attribute?

A

id

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

Name three different types of values you can use to specify colors in CSS.

A

rgb, hex codes, color names

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

What CSS properties make up the box model?

A

margin border padding content

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

Which CSS property pushes boxes away from each other?

A

margin

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

Which CSS property add space between a box’s content and its border?

A

padding

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

What is a pseudo-class?

A

A CSS pseudo-class is a keyword added to a selector that specifies a special state of the selected element(s). For example, :hover can be used to change a button’s color when the user’s pointer hovers over it.

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

What are CSS pseudo-classes useful for?

A

adding additional styling and interactivity

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

Name at least two units of type size in CSS.

A

px, rem, em

17
Q

What CSS property controls the font used for the text inside an element?

A

font-family

18
Q

What is the default flex-direction of a flex container?

A

row

19
Q

What is the default flex-wrap of a flex container?

A

no-wrap

20
Q

What is the default flex-direction of an element with display: flex?

A

row

21
Q

Why do two div elements “vertically stack” on one another by default?

A

because they’re block level elements

22
Q

What does the transform property do?

A

The transform CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model.

23
Q

Give four examples of CSS transform functions.

A

translate, scale, rotate, skew

24
Q

The transition property is shorthand for what four CSS properties?

A

transition-property, transition-duration, transition-timing-function, transition-delay

25
Q

Give two examples of media features that you can query in an @media rule.

A

width, height, device width, aspect ratio

26
Q

Which HTML meta tag is used in mobile-responsive web pages?

A

viewport

27
Q

What is a breakpoint in responsive Web design?

A

a point at which the content is adjusted for some metric

28
Q

What is the advantage of using a percentage (e.g. 50%) width instead of a fixed (e.g. px) width for a “column” class in a responsive layout?

A

so you don’t have to change the px width on multiple break points

29
Q

If you introduce CSS rules for a smaller min-width after the styles for a larger min-width in your style sheet, the CSS rules for the smaller min-width will “win”. Why is that?

A

because they come after the other styles in the cascade