CSS Flashcards

1
Q

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

A

selector, declaration block, property, value

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

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

A

.class-name {

}

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

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

A

type {

}

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

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

A
#id-name {
}
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

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

A

RGB, Hex code, color names

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

What CSS properties make up the box model?

A

Border, padding, margin

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

What are CSS pseudo-classes useful for?

A

Applying styling based on user actions

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

What is a pseudo-class?

A

A class added to a selector to specify a special state for that element.

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

Name at least two units of type size in CSS.

A

pixel, rem, em

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

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

A

font-family

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

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

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

A

row

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

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

A

no-wrap

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

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

A

Because divs are block level elements

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

What are the four components of “the Cascade”.

A

Source order, Inheritance, Specificity, !important

17
Q

What does the term “source order” mean with respect to CSS?

A

The rule that is written last in an external stylesheet is the one that is applied.

18
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, some properties are inheritable prop, ex: color, font-family

19
Q

List the three selector types in order of increasing specificity.

A

Least: Type Selector
Class Selector
Most: ID Selectors

20
Q

Why is using !important considered bad practice?

A

It disrupts the natural cascade of CSS.

21
Q

What does the transform property do?

A

Allows you to alter how an element appears in its coordinate plane.

22
Q

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

A

Width and height

23
Q

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

A

Viewport meta tag - makes the width of the website appear in the actual width of the device screen

24
Q

What is a breakpoint in responsive Web design?

A

The point where your content styling would change.

25
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

The column will always be half the screen size, adjusting to different screen sizes. If you used hard pixels, would have to change a lot of code.

26
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 of source order. The later rule will win.