Toni Michel Caubet
Toni Michel Caubet

Reputation: 20173

Tool to retrieve CSS properties affecting to the selected Text in a browser?

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

Answers (4)

Toni Michel Caubet
Toni Michel Caubet

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

jperelli
jperelli

Reputation: 7197

With firebug in firefox you can use the inspect element tool:

  • use the mouse, click on any part of the page
  • you'll see in the right bottom of the screen the CSS of that part of the page.

There you get all the CSS values hierarchy, even the superseded values. Also, you can copy all, selecting and copying

Upvotes: 0

Deele
Deele

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

Artfunkel
Artfunkel

Reputation: 1852

Yes: http://getfirebug.com/

Use the "Inspect element" option.

Upvotes: 0

Related Questions