CSS hints

CSS performance hints in use: content-visibility, contain, will-change.

Field data PhoneDesktopAll Scope All sites Q2 2026 edition · Desktop field outcomes
Metric LCP INP CLS
1

At a glance the headline numbers for CSS hints

CSS performance hints in use: content-visibility, contain, will-change.

5
Categories
In the distribution
32.9%
Fleet share
Top: will_change
49.2%
Sites with any
Of will_change

12.5% of sites use CSS containment. content-visibility sits at 11.3%.

The State of Web Vitals · Q2 2026 · 189,915 sites · desktop field datacorewebvitals.io/state-of-cwv
2

The CSS hints mix who uses what, and how fast each group loads

Median INP (sites using feature)
0
100ms
200ms
300ms
400ms
500ms
Will change52ms33% of sites
Aspect ratio53ms29% of sites
Scroll driven54ms15% of sites
Containment54ms13% of sites
Content visibility53ms11% of sites
VariantShare of sitesMedian
Will change
33%
52ms
Aspect ratio
29%
53ms
Scroll driven
15%
54ms
Containment
13%
54ms
Content visibility
11%
53ms

CSS hints. On the fleet: 32.9% will change, 28.8% aspect ratio, 14.5% scroll driven. 49.2% of sites use at least one will_change.

The State of Web Vitals · Q2 2026 · 189,915 sites · desktop field datacorewebvitals.io/state-of-cwv
3

Why this matters for the Core Web Vitals, and where to start fixing it

These CSS properties limit how far a change can spread. contain declares a subtree self-contained, so a change inside it does not force layout outside it. content-visibility goes further and skips rendering offscreen sections until the visitor approaches them. will-change moves an animated element onto its own layer, so animating it does not repaint the rest of the page.

They attack the DOM problem directly: a big tree hurts because every change can touch all of it, and containment makes updates local. That is exactly what INP needs. will-change is the one to ration. Every promoted layer costs memory, and a blanket will-change makes performance worse, not better.

Related signals Scheduling API use → Interaction invoker types → Yielding strategy → INP phase breakdown → Chrome field data from 189,915 sites, representing millions of real page loads · How we measured