Reputation: 20173
As you know in any browser you can select a 'piece' of the website and you can get the HTML code for your selection,
well,
is there any tool you can do the same and it shows you the CSS that only afects to your selection?
EDIT
I know you can get the CSS affecting a tag using Firebug, but how about getting the CSS affecting a larger selection of code?
Upvotes: 0
Views: 107
Reputation: 20173
The tool I was looking for
Dust-Me Selectors (Firefox Add-on) https://addons.mozilla.org/firefox/addon/5392/
but it's not supported by firefox 6 i needed to downgrade.. (its in developement, dough)
Upvotes: 1
Reputation: 7197
With firebug in firefox you can use the inspect element tool:
There you get all the CSS values hierarchy, even the superseded values. Also, you can copy all, selecting and copying
Upvotes: 0
Reputation: 3684
Fore developing, you can use Firefox addon FireBug, and for Chrome and IE, there are developer console under F12 key, that allows you to select DOM element, and see all set properties.
Upvotes: 0