Most common causes
- Images and iframes without declared dimensions (width/height or aspect-ratio).
- Ads, embeds and banners loading above existing content.
- Web fonts causing text reflow (FOIT/FOUT).
- Content injected dynamically by JavaScript without reserved space.
How to improve CLS
Always reserve space for media and dynamic content, load web fonts with font-display: optional or swap plus preload, and animate with transform instead of layout-affecting properties. Shifts within 500 ms of a user interaction do not count toward CLS.
Example
An image without dimensions causes layout shift after loading. width, height or aspect-ratio reserve space upfront.
<img src="/summer-promo.jpg" alt="Summer promotion"><img src="/summer-promo.jpg" alt="Summer promotion"
width="1200" height="400" style="aspect-ratio: 3 / 1;">