Performance: Text alignment
LOW IMPACT
Text alignment affects the paint and composite stages of rendering but has minimal impact on page load speed or layout recalculations.
div { text-align: center; }div { display: flex; justify-content: center; align-items: center; text-align: left; }| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Using text-align property | Minimal | 1 reflow | Low paint cost | [OK] Good |
| Using flexbox for text alignment | Moderate | Multiple reflows | Higher paint cost | [X] Bad |