Performance: Flex wrap behavior
MEDIUM IMPACT
Flex wrap affects how items flow and wrap in a container, impacting layout calculation and paint times.
<div class="flex flex-wrap"> ...items... </div><div class="flex flex-nowrap"> ...items... </div>| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| flex-nowrap with many items | Low | Few but forced on overflow | Medium due to overflow scrollbars | [X] Bad |
| flex-wrap with many items | Low | More frequent on resize | Medium but stable layout | [!] OK |
| flex-wrap with fixed item sizes | Low | Minimal reflows on resize | Low paint cost | [OK] Good |