Performance: Absolute units
MEDIUM IMPACT
Absolute units affect page rendering speed by fixing element sizes, which can cause layout shifts on different screen sizes and resolutions.
body { font-size: 1rem; }body { font-size: 16px; }| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Using px for sizes | Minimal | Can trigger reflows on zoom or device change | Moderate | [X] Bad |
| Using rem/em for sizes | Minimal | Fewer reflows due to flexible sizing | Lower | [OK] Good |