Performance: Background repeat control
MEDIUM IMPACT
Controls how background images repeat affects paint and layout performance during page load and resizing.
<div class="bg-[url('/image.png')] bg-no-repeat bg-center bg-cover"><div class="bg-[url('/image.png')] bg-repeat">| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| bg-repeat with large image | Low | 0 | High (many tiles painted) | [X] Bad |
| bg-no-repeat with optimized image | Low | 0 | Low (single paint) | [OK] Good |