Performance: Container utility for centering
LOW IMPACT
This affects the page's layout calculation and paint performance by controlling how content is centered within a container.
<div class="container mx-auto px-4"></div><div class="mx-auto max-w-screen-lg" style="width: 100%; display: block;"></div>
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Inline width 100% with block display | Minimal | Multiple on resize | Moderate | [X] Bad |
| Tailwind container with mx-auto and px-4 | Minimal | Single on resize | Low | [OK] Good |