Problem Statement
What is normal document flow and why is it important?
Explanation
Normal flow is the default way elements are laid out — block elements stack vertically, inline elements flow horizontally. Understanding it is crucial because most layout problems arise from breaking or removing elements from flow (e.g., with absolute or float).
Code Solution
SolutionRead Only
p { display: block; } span { display: inline; }Practice Sets
This question appears in the following practice sets:
