Uses @import
Whether any stylesheet pulls more CSS via @import - a serial request chain.
At a glance the headline numbers for Uses @import
Whether any stylesheet pulls more CSS via @import - a serial request chain.
3.7% of sites still pull CSS through @import.
Uses @import sites that have it vs sites that don't
3.7% of sites use CSS @import (3,543 of 94,748). With use: LCP 1.6s, 81.8% pass. Without: LCP 1.5s, 82.8% pass. Correlates with +111ms LCP and −1.0 pp pass rate. computed
Why this matters for the Core Web Vitals, and where to start fixing it
@import inside a stylesheet is a serial chain. The browser downloads the first stylesheet, parses it, finds the @import, and only then requests the next file. Each level adds a full round trip to the render-blocking path, and the page paints nothing until the chain resolves.
It survives in old themes and design systems because it looks harmless. Replace it with link tags, which download in parallel, or bundle at build time into one file. There is no defensible use of @import on the request path.
How does @import affect the Core Web Vitals?
Having it makes no measurable difference to the LCP: 82% pass with it, 83% without.
Chrome field data from 94,910 sites, representing millions of real page loads. How we measured.