views:

15

answers:

2

Is Firebug or IEDevtoolbar capable of distinction between Inline / External stylesheet styling? If not, is it possible to write a tool that is capable to distinct inline styling from styles from a stylesheet?

+2  A: 

Firebug can do that

In the style panel, it shows Element.style, and all styles applied from stylesheets, with the overridden styles crossed out

Midhat
+1  A: 

Firebug, WebKit Inspector, and IE's DebugBar can do that - they generally keep inline styles in one group and stylesheet rules in another.

mway