← All resources
Images

Add width and height to every image (fix layout shift)

Explicit dimensions reserve space and prevent Cumulative Layout Shift (CLS).


Images without explicit width and height attributes have no reserved space until they load, so surrounding content jumps — that jump is Cumulative Layout Shift (CLS), a Core Web Vital.

How to fix it

<img src="..." width="1500" height="1000" style="height:auto" alt="...">
More on Images
Run a check → Browse resources