Problem Statement
Which value allows flex items to wrap onto multiple lines?
Explanation
Using `flex-wrap: wrap` on a flex container permits items to wrap onto next lines if they overflow the container width. The default is `nowrap`. :contentReference[oaicite:6]{index=6}
Code Solution
SolutionRead Only
.container { display:flex; flex-wrap: wrap; }