Intermediate
HTML & CSS
Q64 / 100
What does the "flex-wrap: wrap" property do in a flex container?
Correct! Well done.
Incorrect.
The correct answer is B) Allows flex items to wrap onto multiple lines if they don't fit within the container's main axis
B
Correct Answer
Allows flex items to wrap onto multiple lines if they don't fit within the container's main axis
Explanation
By default flex items try to fit on one line (nowrap); flex-wrap: wrap allows them to flow onto additional lines when there isn't enough space.
Progress
64/100