tags:

views:

83

answers:

6

Would you be aware of any tools(preferably free) or browser plugins that would allow me to easily determine the styling properties of an element on the web page.

For example it could be a tool that would import all the styling information from the css files associated with the page and presented it as an in-line styling.

Eventually some sort of browser plugin that would alow me to select an element and then would dispaly the styling information.

+5  A: 

Firebug will do that, at least in Firefox.

gkrogers
Firebug is absolutely indispensable to my web development work. It's damned useful for casual use too, like whenever you'd like to investigate or manipulate the DOM of the page that you're looking at.
Phantom Watson
+1 Thanks, firebug does the job nicely. I accepted the Mahrdad answer as he provided the options for other browsers as well
padn
+1  A: 

Your best bet here is the "Web Developer Toolbar" extension for FireFix. With this extension you can enable the "Show CSS Information", clicking on an element opens a window with all appliciable CSS styles.

You can also view all CSS and do many other very helpful things with it.

Mitchel Sellers
+1  A: 

Check the web development helper by Nikhil Kothari for IE

And Firebug in Firefox

Hope this help

Rulas
+7  A: 

Safari and Chrome have a built in Web Inspector, right click and select Inspect Element. Firefox has the Firebug plugin. IE has IE Dev Toolbar.

Mehrdad Afshari
A: 

for web development (overall graphics) the plugin WebDeveloper for firefox. Light and powerfull

alepuzio
+1  A: 

If it's just the colour you are after in Firefox, you can use ColorZilla, which lets you eyedrop any colour off the viewport (including the chrome!)

alex
Thanks, that's a very useful
padn