Core Web Vitals in 2026: What They Are and How to Pass Them
In short
To pass Core Web Vitals in 2026, real Chrome users at the 75th percentile need Largest Contentful Paint under 2.5s, Interaction to Next Paint under 200ms, and Cumulative Layout Shift under 0.1. INP is the metric most sites fail, and it is almost always caused by heavy JavaScript and third-party scripts.
What are Core Web Vitals?
Core Web Vitals are the three field metrics Google uses to quantify real-world page experience. They are measured on actual Chrome users (the Chrome User Experience Report), not in a lab, and Google evaluates the 75th percentile — so a site “passes” only when at least three out of four real visits are fast.
The three metrics and their 2026 thresholds
- Largest Contentful Paint (LCP) — how quickly the main content renders. Good: under 2.5 seconds.
- Interaction to Next Paint (INP) — how responsive the page feels to taps, clicks, and keypresses. Good: under 200 milliseconds.
- Cumulative Layout Shift (CLS) — how much the layout jumps as it loads. Good: under 0.1.
INP replaced First Input Delay in 2024 and is the metric most sites fail today, because it measures the full interaction — including the JavaScript that runs after a click, not just the initial delay.
How to fix LCP
LCP is usually a loading problem. Serve the hero image in a modern format (WebP or AVIF), give it explicit width and height, and preload it. Put render-blocking resources — fonts and critical CSS — on the fastest path, and serve everything from a CDN close to your users.
How to fix INP
INP is a main-thread problem. Ship less JavaScript, split heavy bundles so they load on demand, and defer third-party scripts (chat widgets, analytics, tag managers) until the user actually needs them. Break up long tasks so the browser can respond to input between them. On content sites this often means auditing the plugin and tag stack, which is where the biggest INP wins usually hide.
How to fix CLS
CLS is caused by content that arrives without reserved space. Always set dimensions on images, videos, and ad slots; reserve space for embeds; and avoid injecting banners above existing content. Load web fonts with a matched fallback so text does not reflow when the custom font swaps in.
Why it matters beyond ranking
Core Web Vitals are a genuine ranking signal, but the larger payoff is conversion: faster, more stable pages keep more visitors and turn more of them into leads. Passing these metrics is also the clearest proof a development partner can offer that they build for performance, not just visuals.
Frequently Asked Questions
What is a good Core Web Vitals score in 2026?
At the 75th percentile of real users: LCP under 2.5 seconds, INP under 200 milliseconds, and CLS under 0.1.
Which Core Web Vital is hardest to pass?
INP (Interaction to Next Paint). It is driven by JavaScript execution and third-party scripts, so it is the metric most sites fail.
Do Core Web Vitals affect Google rankings?
Yes, they are part of Google’s page-experience signals. They are not the only factor, but they help — and they strongly affect conversion regardless of ranking.
How do I measure Core Web Vitals?
Use field data from the Chrome User Experience Report (via PageSpeed Insights or Search Console) for real-user scores, and Lighthouse for lab diagnosis.