atlookup

Glossary Performance & Core Web Vitals

Performance & Core Web Vitals

Cumulative Layout Shift

Also: CLS

How much the layout shifts unexpectedly during page load. Target under 0.1.

At a glance
Acronym
CLS
What it measures
Sum of unexpected layout shifts
Good
≤ 0.1
Needs improvement
0.1–0.25
Poor
> 0.25
Common causes
Images without dims · web fonts · ads
Reference: Prevent layout shifts
<!-- Always set image dimensions -->
<img src="/photo.jpg" width="1600" height="900" alt="...">

<!-- Reserve fixed height for ad slots -->
<div class="ad" style="min-height: 250px;"></div>

<!-- font-display: swap + size-adjust prevents font-swap shift -->
<style>
  @font-face {
    font-family: 'Inter';
    src: url(/inter.woff2);
    font-display: swap;
    size-adjust: 100%;
  }
</style>

Why Cumulative Layout Shift Matters

Cumulative Layout Shift is one of the signals search engines and AI assistants use to evaluate page quality and relevance. Sites that get this right consistently outrank competitors who treat it as an afterthought — especially in 2026, where AI-generated answers favor content with clean technical foundations.

Practically, Cumulative Layout Shift shows up in three places:

  • Crawlers and indexers use it to decide whether (and how) to include the page in the index.
  • Ranking algorithms weight it alongside dozens of other signals when deciding position.
  • AI assistants use it as a citation-quality signal when picking which sources to reference.

How to Check Cumulative Layout Shift

The quickest way to see whether Cumulative Layout Shift is set up correctly on your site:

  1. Run a free atlookup audit — it surfaces every relevant signal automatically across all pages.
  2. Cross-reference with Google Search Console for any related coverage warnings.
  3. For per-page deep dives, run Lighthouse on your top 10 pages.
Audit your Cumulative Layout Shift for free

60-second page-by-page report. Every signal scored, prioritized, ready to act on.

Start free audit

Common Mistakes

  • Treating it as one-and-done. Most signals drift over time as themes update, plugins change, and content moves. Audit at least monthly.
  • Fixing symptoms instead of templates. If 100 pages have the same issue, the template is the problem. Fix once at the source.
  • Skipping verification after fixes. Cache layers, CDNs, and stale indexes mean "fixed" rarely means "done" until you re-crawl.

Frequently Asked Questions

What is Cumulative Layout Shift?

How much the layout shifts unexpectedly during page load. Target under 0.1. See the full definition above for examples and context.

Why does Cumulative Layout Shift matter for SEO?

Cumulative Layout Shift affects how search engines and AI assistants understand and rank pages. Sites that get cumulative layout shift right consistently outrank competitors who treat it as an afterthought.

How do I check Cumulative Layout Shift on my site?

Run a free atlookup audit — it surfaces every cumulative layout shift issue automatically across all pages, with each finding traced to a measurable signal.

How long until fixing Cumulative Layout Shift affects my rankings?

Technical fixes typically take 2-8 weeks to register in rankings, depending on crawl frequency. AI Overview citations can shift within days of structural changes.

Is Cumulative Layout Shift important in 2026?

Yes. With AI search now answering 40%+ of queries directly, signals like cumulative layout shift are more important than ever — AI assistants weight them heavily when picking citations.