nonQuiz Flashcards

1
Q

[CSS]
Name of property with multiple values

A

shorthand property

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

[CSS]
the only properties that are allowed in the
container class ( .container )

A

max-width: and
margin: 0 auto;

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

[CSS]
When do you set height on an element?

A

Never.
The only time you set height on an element is when you need additional room

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

[CSS]
the only property allowed for row class? ( .row )

A

display: flex;

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

[CSS]
the only property allowed for column classes?
what does the column name need?

A

flex-basis:
(flex-basis = width)
column name needs to describe the size (ex: column-full, column-third, column-two-thirds)

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

[CSS] when should you use absolute positioning?

A

absolute positioning should only be used to layer something on top of something else

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

[CSS] what does justify-content do?

A

Aligns items horizontally

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

[CSS] What values does justify-content accept?

A

Flex-start
Flex-end
Center
Space-between
Space-around

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

[CSS] what happens with justify-content: flex-start ?

A

Items align to the left side of the container

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

[CSS] what happens with justify-content: flex-end ?

A

Items align to the right side of the container

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

[CSS] what happens with justify-content: center ?

A

Items align to the center of the container

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

[CSS] what happens with justify-content: space-between ?

A

Items display with equal spacing between them

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

[CSS] what happens with justify-content: space-around ?

A

Items display with equal spacing around them

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

[CSS] what does align-items do?

A

It aligns items vertically

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

[CSS] what values does align-items accept?

A

Flex-start
Flex-end
Center
Baseline
Stretch

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

[CSS] what happens with align-items: flex-start ?

A

Items align to the top of the container

17
Q

[CSS] what happens with align-items: flex-end ?

A

Items align to the bottom of the container

18
Q

[CSS] what happens with align-items: center ?

A

Items align at the vertical center of the container

19
Q

[CSS] what happens with align-items: baseline ?

A

Items display at the baseline of the container

20
Q

[CSS] what happens with align-items: stretch ?

A

Items are stretched to fit the container

21
Q

[CSS] what does flex-direction do?

A

it defines the direction items are placed in the container

22
Q

[CSS] what happens with flex-direction: row ?

A

Items are placed the same as the text direction

23
Q

[CSS] what happens with flex-direction: row-reverse ?

A

Items are placed opposite to the text direction

24
Q

[CSS] what happens with flex-direction: column ?

A

Items are placed top to bottom

25
Q

[CSS] what happens with flex-direction: column-reverse?

A

Items are placed bottom to top

26
Q

[CSS] what values does flex-wrap accept?

A

nowrap
wrap
wrap-reverse

27
Q

[DOM] what is a nodelist?

A

a collection of nodes