Display property Flashcards

1
Q

two default display properties

A

inline and block

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

display: inline;

A

element is inline, cant assign width or height

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

display: block;

A

element is block element

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

display: inline-block;

A

element is block element that acts inline (runs L to R no line break), can change width and height

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

default behavior of display: inline;

A

elements run left to right, overlap into next line
cannot change width or height

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

default behavior of display: block;

A

elements are stacked top to bottom, all the way to right side of page

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