Performance: Image thumbnails
MEDIUM IMPACT
Image thumbnails affect page load speed and rendering performance by controlling image size and format, impacting Largest Contentful Paint (LCP).
<img src="photo-thumb.jpg" class="img-thumbnail" alt="Photo">
<img src="large-photo.jpg" class="img-thumbnail" alt="Photo">
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Full-size image resized with CSS | Minimal | 1 reflow per image | High due to large decode and paint | [X] Bad |
| Properly sized thumbnail image | Minimal | 1 reflow per image | Low due to smaller decode and paint | [OK] Good |