Problem Statement
Which flexbox property helps wrap items on smaller screens?
Explanation
The `flex-wrap` property allows flex items to move to the next line when space runs out — crucial for responsive rows of elements like cards or buttons.
Code Solution
SolutionRead Only
.container { display: flex; flex-wrap: wrap; }