As pointed out by austin and Waterlink, the Calculated Styles tab (or Calculated in FF) can display the current styles and their beginning.
However, the Styles tab is also very useful. By right-clicking on the βvalidateβ item, the Styles tab will display a complete list of all active styles and overwritten styles associated with the item being checked. (Shows them how they were written in CSS. Not what is actually displayed) This way you can determine which styles were rewritten in which order. The style in your css can be overwritten from an inline style, a user-defined style, a later defined css file, or a higher value css rule or even a non-css attribute, such as width / height attributes directly on the HTML element
Formatting shows the status of the style:
- plain text = active
- strike through = inactive as another style overwrites it
- greyed out = id not applicable. (If you check the style style
<p> , and the identifier css p, span , then the identifier span will be grayed out)
Example:

In this image, the color #post a property is inactive. It has been overwritten by the color property in #cashieCatalog .
Drkawashima
source share