Skip to content
Web experience

What is Largest Contentful Paint (LCP)?

Largest Contentful Paint measures when the largest visible element in the viewport finishes rendering — usually a hero image, a video poster or a large text block. Google’s threshold for "good" is 2.5 seconds at the 75th percentile of real visits.

Definition

Definition

Also written: LCP

Largest Contentful Paint measures when the largest visible element in the viewport finishes rendering — usually a hero image, a video poster or a large text block. Google’s threshold for "good" is 2.5 seconds at the 75th percentile of real visits.

It decomposes into four phases: time to first byte, resource load delay, resource load time, and render delay. Diagnosing which phase dominates matters, because the fixes are unrelated.

Render delay is the most commonly misdiagnosed. A large render-delay share means the element is not painting, which compressing the image further will not address.

The usual error

Where this goes wrong in practice

Compressing the hero image when the load phase is already fast. If the bytes arrive quickly and the paint is still late, the problem is elsewhere.