Display property Flashcards
1
Q
two default display properties
A
inline and block
2
Q
display: inline;
A
element is inline, cant assign width or height
3
Q
display: block;
A
element is block element
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
5
Q
default behavior of display: inline;
A
elements run left to right, overlap into next line
cannot change width or height
6
Q
default behavior of display: block;
A
elements are stacked top to bottom, all the way to right side of page