Skip to main content
Cloud Hosting starting at $2.91/mo. Auto-scaling servers with a FREE domain included. Start Now →
Performance

Core Web Vitals in 2026: The Complete Guide to LCP, INP & CLS

Google's Core Web Vitals are the most important performance metrics for your website in 2026. This guide breaks down what each metric means, how to measure them, and exactly how to fix problems — with real benchmarks and actionable steps.

S

Serverlys Team

Jul 12, 2026 · 10 min read

In 2020, Google introduced Core Web Vitals as a set of metrics that quantify the real-world user experience of a webpage. Six years later, these metrics have evolved, become a confirmed ranking factor, and fundamentally changed how websites are built and optimized. Yet the majority of sites on the web still fail at least one Core Web Vital assessment.

According to the Chrome User Experience Report (CrUX), only 42% of websites pass all three Core Web Vitals thresholds as of mid-2026. That means more than half of the web delivers a subpar experience — and Google is actively rewarding the sites that don't.

This guide covers everything you need to know about Core Web Vitals in 2026: what each metric measures, the current thresholds, how to diagnose failures, and the specific fixes that move the needle. Whether you run a WordPress blog or an ecommerce store, these optimizations apply to you.

What Are Core Web Vitals?

Core Web Vitals are a subset of Google's Web Vitals initiative. They represent three dimensions of user experience:

Each dimension is measured by a specific metric with defined "good," "needs improvement," and "poor" thresholds. Google evaluates these metrics using real-world data from Chrome users (field data), not just lab simulations.

The Three Core Web Vitals in 2026

Metric What It Measures Good Needs Improvement Poor
LCP Largest Contentful Paint ≤ 2.5s 2.5s – 4.0s > 4.0s
INP Interaction to Next Paint ≤ 200ms 200ms – 500ms > 500ms
CLS Cumulative Layout Shift ≤ 0.1 0.1 – 0.25 > 0.25

To pass the Core Web Vitals assessment, at least 75% of your page visits must meet the "good" threshold for all three metrics. This is evaluated at the 75th percentile — meaning Google looks at the experience of the user who has a worse experience than 75% of visitors, but a better experience than the worst 25%.

LCP: Largest Contentful Paint

LCP measures the time it takes for the largest visible content element to render on screen. This is typically a hero image, a large text block, or a video poster image. It's the metric that most closely reflects a user's perception of "this page has loaded."

What Counts as the LCP Element?

The browser identifies the LCP element automatically based on the largest content element in the viewport at the time it finishes rendering. Common LCP elements include:

Common Causes of Poor LCP

  1. Slow server response time (TTFB) — If your server takes 800ms to respond, your LCP cannot possibly be under 2.5s without aggressive optimization elsewhere. A slow host is the number one cause of poor LCP.
  2. Render-blocking resources — CSS and JavaScript files in the <head> that block rendering. Every render-blocking resource adds to LCP.
  3. Unoptimized images — Serving a 2MB PNG hero image when a 150KB WebP would do the same job.
  4. Slow resource load times — Third-party fonts, scripts, and stylesheets that load from slow CDNs or distant servers.
  5. Client-side rendering — JavaScript frameworks that render content in the browser instead of delivering server-rendered HTML.

How to Fix LCP

1. Reduce server response time. Your TTFB should be under 200ms. If it's higher, consider upgrading your hosting to a provider with NVMe SSD storage and LiteSpeed or Nginx servers. Our TTFB optimization guide covers this in detail.

2. Preload the LCP resource. If your LCP element is an image, add a preload hint in the <head>:

<link rel="preload" as="image" href="/images/hero.webp" fetchpriority="high">

3. Eliminate render-blocking CSS. Inline critical CSS (the styles needed for above-the-fold content) directly in the <head>, and load the rest asynchronously.

4. Use modern image formats. Convert images to WebP or AVIF. A typical JPEG hero image at 300KB becomes 80–120KB in WebP with no visible quality loss. See our image optimization guide for format comparisons.

5. Implement a CDN. Serve static assets from edge servers close to your users. A CDN can reduce LCP by 200–500ms for visitors far from your origin server.

Serverlys Tip: Our cloud hosting includes built-in CDN integration and LiteSpeed web servers, which reduces average TTFB to under 150ms. This gives you a massive head start on LCP optimization before you even touch your code.

INP: Interaction to Next Paint

INP replaced First Input Delay (FID) as a Core Web Vital in March 2024. While FID only measured the delay of the first interaction, INP measures the responsiveness of all interactions throughout the page lifecycle, and reports the worst one (at the 98th percentile to exclude outliers).

This is a much harder metric to pass. FID was generous — nearly 97% of websites passed it. INP is more demanding, and only about 65% of origins currently pass the 200ms threshold.

How INP Is Calculated

When a user interacts with your page (click, tap, key press), the browser must:

  1. Process the event handler — Run any JavaScript attached to the interaction
  2. Update the DOM — Apply changes to the page structure
  3. Render the next frame — Paint the visual result of the interaction

INP measures the total time from the interaction to when the browser paints the next frame. The metric reports the worst interaction during the page visit (with some statistical adjustment for pages with many interactions).

Common Causes of Poor INP

How to Fix INP

1. Break up long tasks. Use requestAnimationFrame, setTimeout, or the scheduler.yield() API to break JavaScript tasks into chunks under 50ms. This allows the browser to process user input between chunks.

2. Defer non-critical JavaScript. Move analytics, chat widgets, and non-essential scripts to load after the page is interactive. Use defer or async attributes, or load them dynamically after user interaction.

3. Reduce DOM size. Aim for under 1,500 DOM nodes. Use virtualization for long lists, lazy-load off-screen content, and avoid deeply nested HTML structures.

4. Debounce and throttle event handlers. For scroll, resize, and input events, limit how often your handler runs. A scroll handler that fires 60 times per second can destroy INP.

5. Use CSS for animations. Replace JavaScript-driven animations with CSS transitions and transforms. CSS animations run on the compositor thread and don't block the main thread.

CLS: Cumulative Layout Shift

CLS measures how much visible content shifts unexpectedly during the page lifecycle. You know the experience: you're about to click a link, and an ad loads above it, pushing the link down. You click the wrong thing. That's layout shift, and CLS quantifies it.

How CLS Is Calculated

CLS is calculated as the sum of all individual layout shift scores during the page session, grouped into "session windows" (bursts of shifts within 1 second, with at most 5 seconds between them). The largest session window score is the CLS value.

Each layout shift score = impact fraction x distance fraction. The impact fraction is the percentage of the viewport affected by the shift. The distance fraction is how far the element moved relative to the viewport.

Common Causes of Poor CLS

How to Fix CLS

1. Always set image dimensions. Include width and height attributes on every <img> and <video> element. Use CSS aspect-ratio for responsive sizing:

img { aspect-ratio: 16/9; width: 100%; height: auto; }

2. Reserve space for ads and embeds. Use CSS min-height on ad containers to prevent layout shifts when the ad loads. If you know the ad dimensions, set them explicitly.

3. Use font-display: swap with size-adjust. The font-display: swap CSS descriptor shows fallback text immediately, and size-adjust lets you match the fallback font's metrics to the web font, reducing text reflow.

4. Avoid inserting content above existing content. If you need to add banners or notices, use overlays (position: fixed) instead of pushing content down. Or reserve space for them in the initial layout.

5. Use contain: layout on animated elements. The CSS contain property tells the browser that an element's layout is independent, preventing changes inside it from shifting surrounding content.

How to Measure Core Web Vitals

You need both lab data (controlled testing) and field data (real user measurements) for a complete picture. Lab data helps you diagnose problems; field data shows what Google actually uses for ranking.

Field Data Tools (What Google Uses)

Tool Data Source Best For
Google Search Console CrUX (real Chrome users) Tracking site-wide CWV status over time
PageSpeed Insights CrUX + Lighthouse Per-URL field + lab data in one report
CrUX Dashboard CrUX dataset Historical trends by origin
web-vitals.js Your real users Custom RUM (Real User Monitoring)

Lab Data Tools (For Diagnosis)

Tool Metrics Best For
Lighthouse (Chrome DevTools) LCP, CLS, TBT (INP proxy) Quick audits during development
WebPageTest All metrics + filmstrip Detailed waterfall analysis
Chrome DevTools Performance tab All metrics + flame chart Diagnosing specific interaction problems
Lighthouse CI All Lighthouse metrics Automated testing in CI/CD pipelines

Pro tip: Always prioritize field data over lab data. Lab data measures performance under ideal conditions; field data measures what your actual users experience. A site can score 100 in Lighthouse and still fail CWV in the field if your users are on slow connections or older devices.

Core Web Vitals and SEO: The Real Impact

Google has confirmed that Core Web Vitals are a ranking signal, but the impact is often misunderstood. Here's what the data actually shows:

How Much Do CWV Affect Rankings?

Core Web Vitals are a tiebreaker signal, not a dominant one. Content relevance, backlinks, and search intent still outweigh page experience. However, in competitive niches where multiple pages have similar content quality, passing CWV can be the difference between position 5 and position 1.

Studies from Searchmetrics, Ahrefs, and independent researchers have shown:

"We've seen clients gain 10-20% more organic traffic within 90 days of passing all three Core Web Vitals. The ranking boost is modest, but the user experience improvements compound into real business results."

CWV Impact on User Behavior

Beyond SEO, Core Web Vitals directly affect user behavior and business metrics:

A Step-by-Step CWV Optimization Workflow

Here's the process we recommend for systematically improving your Core Web Vitals:

  1. Audit your current state. Run PageSpeed Insights on your top 10 pages. Check Google Search Console's Core Web Vitals report for site-wide issues.
  2. Identify the failing metric(s). Focus on one metric at a time. The priority order should be: LCP first (biggest impact), then CLS (usually easiest to fix), then INP (most complex).
  3. Find the root cause. Use Chrome DevTools Performance tab to identify the specific bottleneck. Is it a slow server? A large image? A blocking script?
  4. Implement fixes. Apply the metric-specific fixes outlined above.
  5. Test in lab. Verify improvements using Lighthouse and WebPageTest.
  6. Monitor field data. Wait 28 days for CrUX data to update (it uses a rolling 28-day window). Verify that real-user data confirms your improvements.
  7. Set up ongoing monitoring. Use Google Search Console alerts or a RUM tool to catch regressions before they impact rankings.

Hosting and Core Web Vitals: Why Your Server Matters

Your hosting provider is the foundation of your Core Web Vitals performance. No amount of frontend optimization can overcome a slow server. Here's how hosting directly impacts each metric:

Hosting Factor CWV Impact Typical Improvement
NVMe vs. HDD storage LCP (faster TTFB) 200–400ms reduction
LiteSpeed vs. Apache LCP, INP (faster processing) 150–300ms reduction
Built-in CDN LCP (edge delivery) 100–500ms reduction
HTTP/3 support LCP, INP (faster connections) 50–150ms reduction
Server-level caching LCP (instant responses) 500–1500ms reduction

Serverlys Tip: Our cloud hosting includes NVMe SSD storage, LiteSpeed web servers, built-in CDN, and HTTP/3 support — covering every server-side factor that impacts Core Web Vitals. See all our performance features or compare plans.

Common CWV Mistakes to Avoid

After auditing hundreds of sites, here are the mistakes we see most often:

Frequently Asked Questions

How often does Google update Core Web Vitals data?

CrUX field data uses a rolling 28-day window, updated daily. Google Search Console updates CWV reports weekly. If you make improvements, expect to see the changes reflected in field data within 4–6 weeks.

Do Core Web Vitals affect all search results equally?

CWV are a page-level signal, meaning each URL is evaluated independently. However, Google also evaluates at the origin level (your entire domain) for URLs without enough individual data. This means poor CWV on high-traffic pages can impact your entire site's assessment.

What replaced FID, and why?

INP (Interaction to Next Paint) replaced FID (First Input Delay) in March 2024. FID only measured the delay of the first interaction, which was too forgiving — 97% of sites passed it. INP measures all interactions throughout the page visit, giving a more accurate picture of responsiveness. It's a harder bar to clear, but a better measure of real user experience.

Can I pass Core Web Vitals on shared hosting?

It's possible but very difficult. Shared hosting typically has TTFB of 400–800ms, which eats into your LCP budget significantly. Cloud hosting with TTFB under 200ms gives you much more room for frontend optimizations to bring LCP under the 2.5s threshold.

What's a good target for each metric?

Aim for better than "good" thresholds: LCP under 2.0s (instead of 2.5s), INP under 150ms (instead of 200ms), and CLS under 0.05 (instead of 0.1). Building headroom prevents regressions from pushing you into "needs improvement."

Related Articles

Pass Core Web Vitals with the right hosting

Serverlys cloud hosting gives you NVMe storage, LiteSpeed servers, and built-in CDN — the foundation for passing every Core Web Vital.