2

Is it possible to with any Chrome or any other developer tools to see which CSS files link to in a page dont actually exist?

1
  • 1
    See the Web Developer Tools console for 404 errors of files. From the files look for css extension ending URLs Commented Apr 14, 2014 at 14:49

2 Answers 2

0

In any browser's Developer Tools, if you switch to the Network pane, you'll see all requests made from the page. Look for red lines, those will be requests that failed. Of those, look for the ones that have a 404 (Not Found) Status. As the comments said, the ones ending with .css are the ones you like.

As a bonus, FireFox's Dev Tools have a filter at the bottom - choose "CSS" and you'll only see requests for CSS files - successful, or otherwise.

3

In chrome developer tools on the network tab you can also filter for this

 status-code:404 

to only get a list of missing resources

1
  • Filtering for that phrase removes all other results except 404's, the previous answers all involved manually looking through the whole list of resources, for the red ones - this is much more efficient. Commented Jun 10, 2015 at 14:23

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.