Flexbox Flashcards

1
Q

Containers

A

display: flex;

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

Flex: 1 1 0%; is short for

A

flex-grow: 1; Flex-shrink: 1; Flex-basis: 0%

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

stop item from increasing in size (but allow to decrease)

A

flex: initial;

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

Items change size to fit container and all free space is shared among items

A

flex: auto;

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

Items will stick to width/height settings and will not ‘flex’ to fit

A

flex: none;

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

Make flex items arrange themselves vertically

A

flex-direction: column

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

axes cheatcheat

A

flexbox.malven.co

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

Move items along X axes

A

justify-content:

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

Move items along Y axes

A

align-items:

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

Remove underline from hyperlinks

A

text-decoration: none

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

Remove bullet points from lists

A

list-style-type:none

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