Find definition of CSS class in external stylesheet
css, google-chrome-devtools
Solution
If you're using the Chrome inspector (right click page, inspect element), highlight the line and look to the right. It should show the CSS class and any rules that are used, and a link to the CSS file.
Problem
I'm using Chrome's Development Tools to inspect an element from a web page. Suppose it shows something like: ``` <div class="some-class"> ``` Assuming `some-class` is defined in an external style sheet, what is the simplest way to find the style sheet(s) that define `some-class`?