Performance: Line height
MEDIUM IMPACT
Line height affects text layout and vertical spacing, impacting layout stability and paint performance.
p { line-height: 1.5; }p { line-height: normal; }| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Using 'normal' line-height | Minimal | Multiple on font load and resize | Medium | [X] Bad |
| Using fixed numeric line-height (e.g., 1.5) | Minimal | Single initial reflow | Low | [OK] Good |