Performance: Background size and position
MEDIUM IMPACT
This affects how quickly background images load and how smoothly they render on the page.
bg-[url('/large-image.jpg')] bg-cover bg-centerbg-[url('/large-image.jpg')] bg-auto bg-center| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| bg-auto with large image | Minimal | Multiple reflows if image size changes | High paint cost due to large image | [X] Bad |
| bg-cover with optimized image | Minimal | Single reflow | Lower paint cost | [OK] Good |
| Arbitrary complex bg-position | Minimal | No reflows | Slightly higher style calculation | [!] OK |
| Tailwind built-in bg-position | Minimal | No reflows | Lower style calculation | [OK] Good |