Performance: Viewport units
MEDIUM IMPACT
Viewport units affect the layout and sizing of elements relative to the browser window size, impacting rendering and layout recalculations on resize.
div { height: 100dvh; } /* dynamic viewport height */div { height: 100vh; } /* full viewport height */| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Using 100vh for height | Minimal | Multiple on resize | Medium | [X] Bad |
| Using 100dvh for height | Minimal | Single or none on resize | Low | [OK] Good |