← Glossary·Performance
Core Web Vitals
Also known as: CWV
Google’s three-metric snapshot of user experience: loading speed (LCP), interactivity (INP), and visual stability (CLS).
Core Web Vitals is Google’s standard set of metrics for measuring the user experience of a web page. As of 2024 the three vitals are Largest Contentful Paint (loading), Interaction to Next Paint (interactivity), and Cumulative Layout Shift (visual stability). Each metric has a "good" threshold (LCP under 2.5s, INP under 200ms, CLS under 0.1) and a "poor" threshold above which Google considers the experience unacceptable.
The vitals are measured against real users via the Chrome User Experience Report, not synthetic loads. They feed into Google’s ranking signals — modestly, but consistently — and into the URL inspection tool in Search Console.
The practical advice: focus on the worst of the three first. A site with great LCP and CLS but a 600ms INP is going to feel slow to every user, no matter what the score sheet says.
Specs & references
See also
Largest Contentful Paint
How long the page takes to draw its biggest above-the-fold element. The headline metric in…
Cumulative Layout Shift
A score for how much the page jumps around as it loads. Anything above 0.1 means visible j…
Interaction to Next Paint
How long it takes the page to visually respond to a user input. Replaced FID as a Core Web…