Performance: Flex wrap
MEDIUM IMPACT
Flex wrap affects how items flow and wrap in a flex container, impacting layout calculation and paint times.
display: flex; flex-wrap: wrap;
display: flex; flex-wrap: nowrap;
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| flex-wrap: nowrap with many items causing overflow | Low | 1+ (due to overflow) | Medium (scrollbar repaint) | [X] Bad |
| flex-wrap: wrap with batch DOM updates | Low | 1 | Low | [OK] Good |
| flex-wrap: wrap adding items one by one | High | N (for N items) | High | [X] Bad |