P2 · MediumPerformance
Render-blocking CSS
Too many render-blocking stylesheets
Code: render_blocking_css
Why it matters
Too many render-blocking stylesheets. Slow experiences increase bounce rates and hurt Core Web Vitals scores. Google uses these metrics as a direct ranking signal.
How to fix
Async-load non-critical CSS
html<!-- Critical CSS inlined -->
<style>/* Critical above-fold styles here */</style>
<!-- Non-critical CSS loaded async -->
<link rel="preload" href="/styles/non-critical.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="/styles/non-critical.css"></noscript>Related checks in Performance
Run a free scan to check your site
Get a complete audit in under 2 minutes. No account required.
Start Free Scan