Skip to content

WEBSITE CREATION

Core Web Vitals in Plain Language

Three metrics, three distinct causes. Most sites fail one of them for a reason that takes an afternoon to fix.

6 min readKelhos Brand

Core Web Vitals measure what a visitor experiences: how quickly the main content appears, how quickly the page responds, and whether it moves under their finger. They are a ranking signal, but they matter mainly because they describe frustration.

Largest Contentful Paint — how fast the main thing appears

LCP measures when the biggest element in the viewport finishes rendering — usually a hero image or headline. Target: under 2.5 seconds.

What breaks it

  • A large unoptimised hero image.
  • Render-blocking CSS or fonts loaded from a third-party domain.
  • Slow server response before anything can start.
  • Content injected by JavaScript after load.

What fixes it

  • Serve the hero as WebP or AVIF, sized for the viewport.
  • Self-host fonts and preload the one used above the fold.
  • Remove render-blocking imports from the top of your stylesheet.
  • Render the above-the-fold content on the server.

Interaction to Next Paint — how fast it responds

INP measures the delay between a user interacting and the page visibly responding. Target: under 200 milliseconds.

What breaks it

  • Heavy JavaScript occupying the main thread.
  • Large third-party scripts — chat widgets, tag managers, analytics stacks.
  • Expensive work running on every scroll or input event.
  • Hydrating an entire page of components that are not interactive.

What fixes it

  • Ship less JavaScript. Split code so a page loads only what it uses.
  • Audit third-party scripts and remove what nobody reads.
  • Throttle scroll handlers.
  • Keep non-interactive sections out of the client bundle entirely.

Cumulative Layout Shift — whether it jumps

CLS measures unexpected movement of content during load. Target: under 0.1.

What breaks it

  • Images without width and height, so the browser cannot reserve space.
  • Web fonts swapping and reflowing text.
  • Banners or notices injected above existing content.
  • Ads or embeds in containers with no fixed dimensions.

What fixes it

  • Always set explicit dimensions or an aspect ratio on images and embeds.
  • Use font-display: swap with a fallback of similar metrics.
  • Reserve space for anything that appears after load.

Measuring properly

Lab tools like Lighthouse run on one simulated device. Field data — what real visitors experienced — is what Search Console reports and what counts.

A perfect Lighthouse score with failing field data usually means your real users are on slower devices and worse connections than your test. Trust the field data.

Where to start

  1. Open Search Console's Core Web Vitals report and find which metric fails, on which template.
  2. Fix the template, not the individual page — one theme change usually moves hundreds of URLs.
  3. Re-measure after the field data updates, which takes weeks rather than hours.

Most sites fail exactly one metric for exactly one reason. Chasing all three at once wastes the afternoon.

Performance is one input among several — see what a business website costs for where it sits in a build budget.

Frequently asked

What are the Core Web Vitals thresholds?

Largest Contentful Paint under 2.5 seconds, Interaction to Next Paint under 200 milliseconds, and Cumulative Layout Shift under 0.1. Each measures a different aspect of the experience and fails for different reasons.

Why does my page score well in Lighthouse but fail in Search Console?

Lighthouse is a lab test on one simulated device. Search Console reports field data from real visitors, who are often on slower devices and connections. Field data is what counts, so trust it over the lab score.

What is the most common cause of a poor LCP?

A large unoptimised hero image, followed by render-blocking CSS or fonts loaded from a third-party domain. Serving the hero as WebP or AVIF at the right size and self-hosting fonts usually fixes it.

How do I fix layout shift?

Set explicit width and height or an aspect ratio on every image and embed so the browser can reserve space, use font-display swap with a metrically similar fallback, and reserve space for anything injected after load such as banners.

Want this handled for you?

Kelhos Brand sets up US LLCs for founders outside the United States — filing, EIN, registered agent, and the banking and payment steps that follow.

See how it works Ask a question

WEBSITE CREATION

Next.js or WordPress for a Business Site?

6 min read

WEBSITE CREATION

What a Business Website Costs in 2026, by Scope

6 min read

SHOPIFY DEVELOPMENT

Reducing Cart Abandonment Without Discounting

6 min read

SHOPIFY DEVELOPMENT

What a Shopify Store Costs to Build and Run

6 min read