PageSpeed Matters
    PageSpeed Matters
    Core Web Vitals · Glossary

    Largest Contentful Paint (LCP) · Definition & Explanation 2026

    Largest Contentful Paint (LCP) is the Core Web Vital that measures perceived loading speed — specifically, the time it takes for the largest visible content element (typically a hero image, product photo, or main heading) to finish rendering in the viewport. Google considers LCP the most user-perceptible loading metric because it captures the moment a visitor feels the page has 'loaded.'

    As of 2026, the LCP threshold remains ≤ 2.5 seconds for a 'good' score, evaluated at the 75th percentile of real-user field data from CrUX over a rolling 28-day window. According to the HTTP Archive, only about 55% of mobile origins currently meet this threshold — meaning nearly half the web delivers a sluggish first impression.

    The business impact is well-documented: Google/Deloitte research found that a 0.1s improvement in mobile site speed increases retail conversions by 8.4%. Vodafone improved LCP by 31% and saw a 15% increase in sales. For e-commerce sites, LCP is typically the single most impactful metric to optimize because it determines whether users stay or bounce within the first few seconds.

    In this glossary entry, you'll learn exactly what LCP measures and which elements qualify, the four sub-parts of LCP (TTFB, resource load delay, resource load duration, element render delay), current 2026 thresholds and their evolution, the best measurement tools, the most common causes of slow LCP, and a step-by-step optimization playbook with real-world case studies.

    Updated 2026-02-28
    M
    By Matt Suffoletto

    TL;DR — Quick Summary

    LCP measures when the largest visible content element (image or text block) finishes rendering. Good LCP is under 2.5 seconds at p75. It's the most impactful Core Web Vital for perceived loading speed and directly affects rankings, bounce rates, and conversions.

    What is Largest Contentful Paint (LCP)?

    Largest Contentful Paint (LCP) is a Core Web Vitals metric that reports the render time of the largest image, video poster, or text block visible within the viewport, relative to when the page first started loading. LCP is designed to measure perceived loading speed — when a user feels the page has 'loaded' because the main content is visible.

    Google decomposes LCP into four sub-parts, each representing a phase of the loading process:

    • Time to First Byte (TTFB) — Server processing + network transit time. Ideally < 800ms.
    • Resource Load Delay — Time between TTFB and when the browser starts downloading the LCP resource (e.g., hero image). Caused by render-blocking resources or late discovery.
    • Resource Load Duration — Time to download the LCP resource itself. Affected by file size, CDN proximity, and connection speed.
    • Element Render Delay — Time between resource download completion and the element actually painting on screen. Caused by render-blocking JS, pending stylesheets, or heavy main-thread work.

    Understanding these four phases is critical for diagnosis: a high LCP can be caused by problems in any phase, and the fix differs dramatically. For example, if TTFB is 2.0 seconds, no amount of image optimization will achieve good LCP — the server must be fixed first.

    LCP Thresholds

    MetricGoodNeeds ImprovementPoor
    LCP≤ 2.5s2.5s – 4.0s> 4.0s

    Google evaluates the 75th percentile (p75) of real-user field data over a rolling 28-day window.

    History & Evolution

    LCP was introduced by Google in May 2020 as part of the original Core Web Vitals trio (LCP, FID, CLS). It replaced earlier loading metrics like First Meaningful Paint (FMP) and First Paint (FP) which were unreliable and inconsistent across page types.

    Key milestones:

    • May 2020 — LCP announced as a Core Web Vital, replacing FMP.
    • June 2021 — LCP becomes a ranking signal as part of the Page Experience Update (mobile).
    • February 2022 — Page Experience signals (including LCP) expand to desktop search.
    • 2023–2024 — Google publishes the 'four sub-parts of LCP' framework, helping developers diagnose which phase causes slow LCP.
    • 2025–2026 — The 2.5-second threshold remains unchanged. Google has signaled no plans to tighten it.

    LCP was designed to be more intuitive than its predecessor (FMP) because it measures a single, identifiable element rather than an algorithmic 'meaningful' paint heuristic.

    How LCP is Measured

    LCP is measured from navigation start to when the largest content element finishes rendering. The browser continuously updates the LCP candidate as larger elements render and stops recording after user interaction.

    Field Data (What Google Uses):

    • Google Search Console — Core Web Vitals report
    • PageSpeed Insights — CrUX section
    • CrUX API — Programmatic access

    Lab Data (For Debugging):

    • Lighthouse (25% of performance score)
    • Chrome DevTools Performance panel — identifies the LCP element and timing
    • WebPageTest — filmstrip view shows exactly when LCP renders

    Best Practice: Check field data first (PSI or Search Console) to know where you stand. Use lab tools (Lighthouse, DevTools) to diagnose the specific sub-part causing delay.

    Key rule: Field data (CrUX) determines Google rankings. Lab data (Lighthouse, WebPageTest) is for debugging and iteration.

    Common Causes of Poor LCP Scores

    The four sub-parts of LCP and their common problems:

    1. 1Slow TTFB (> 800ms): Poor hosting, missing CDN, uncached dynamic pages, redirect chains, slow database queries.
    1. 1High Resource Load Delay: LCP image not discovered until CSS is parsed (background-image), render-blocking scripts delaying resource discovery, missing preload hint.
    1. 1Slow Resource Load Duration: Unoptimized images (2-5MB JPEGs), no WebP/AVIF conversion, missing responsive srcset (sending 2000px image to 400px screen), slow or missing CDN.
    1. 1High Element Render Delay: Client-side rendering (React/Vue building content after JS executes), render-blocking CSS delaying paint, web fonts blocking text rendering (FOIT), heavy main-thread JavaScript work.

    Frequently Asked Questions

    Struggling with LCP?

    Request a free speed audit and we'll identify exactly what's holding your scores back.