At a glance the headline numbers for HTML size (kB)
The transfer size of the HTML document.
The typical HTML document weighs 22 KB.
Distribution & median CLS site count and median CLS at each level of HTML size (kB)
Passing CLS by HTML size (kB) which level passes the CLS most often
HTML size (kB) 22 KB. p75 42 KB. p99 273 KB. At the low end (0 KB): CLS 0.01. At the high end (>p98): CLS 0.00. computed
Why this matters for the Core Web Vitals, and where to start fixing it
HTML size is parse-and-discover time. The browser reads the document from the top, and everything it should find early (the stylesheets, the LCP image) sits deeper in a big document. Very large HTML usually means inlined payloads: base64 images, server-rendered JSON state, giant inline scripts.
The early bytes matter most. The first network round trip delivers only the start of the document, so what sits in the head decides what the browser can do while the rest streams in. Keep the head lean and put the critical references early.
How does HTML size affect the Core Web Vitals?
HTML size correlates with the LCP. Where the HTML size is low, 84% of sites pass the LCP. Where it is high, 73% do. The decline is gradual. There is no point where sites suddenly start failing.
Chrome field data from 94,910 sites, representing millions of real page loads. How we measured.