FlexBox Flashcards

1
Q

What is the vertical axis of the flexbox called?

A

Cross Axis

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

How do you change the direction of the main direction in the flex-box.

A

flex-direction: row | row-reverse | column | column-reverse

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

How to make a flex box wrap

A

flex-wrap: wrap | no-wrap | wrap-reverse

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

Define how the flex items will be aligned along the main axis

A

justify-content: flex-start | center | space-between | space-around | space-evenly

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

Defines how the items are aligned along the cross axis of the flex-box

A

align-item: stretch | flex-end | center | space-between | space-around

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

Controls how the rows are aligned along the cross axis of a flex box

A

align-content: stretch | flex-start | flex-end | center | space-between | space-around

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

Item version of the align-items. If you wanted a specific item to do something different you would use this property

A

align-self: auto | stretch | flex-start | flex-end | center | baseline

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

Determining where an item should appear in the row of items

A

order: 0 | int

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

Determining how much an item can grow in a flex-box

A

flex-grow: 0 | int

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

Determine how much an item can shrink in a flex-box

A

flex-shrink: 1 | int

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

Define the base width of flex items

A

flex or flex-basis: auto | int

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

divert the direction of the main axis in the flex-box

A

flex-direction: row-reverse

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