How do block-level elements affect the document flow?
It will start at a new line
How do inline elements affect the document flow?
It will share the same line (if possible).
What are the default width and height of a block-level element?
The default width is 100%
The height is dependent on the size of the content (the value is set to auto).
What are the default width and height of an inline element?
Both height and width are set to auto.