Performance: Text alignment utilities
LOW IMPACT
Text alignment utilities affect the browser's style calculation and paint stages, influencing how text is visually positioned without changing layout structure.
<div class="text-center px-3">Centered Text</div>
<div style="text-align: center; padding-left: 10px; padding-right: 10px;">Centered Text</div>| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Inline style text-align | No extra DOM nodes | 0 reflows | Triggers paint for text alignment | [OK] |
| Bootstrap text alignment utility class | No extra DOM nodes | 0 reflows | Minimal paint cost, cached styles | [OK] Good |