Page has broken CSS
A missing stylesheet strips a page of its design, leaving raw, unstyled content for users and crawlers.
What it is
This check flags <link rel='stylesheet'> references that return an error such as 404.
Why it matters for SEO
Unstyled pages look broken, raise bounce rate, and can shift layout dramatically, hurting UX and Core Web Vitals.
Example
<link rel='stylesheet' href='/css/app.css'> -> 404 Not Found
How to fix
- Restore the file or fix the
hrefpath. - Check hashed filenames from your build pipeline.
- Remove references to stylesheets you no longer ship.
- Re-crawl to confirm styles load.