I know there must be a way to do this and I've always just worked around it but, is there some way I can see (and/or edit) the pseudo-class styles applied to an element?

For example, Im looking to edit .myclass:hover or #someid:active in the debugger.

ps. Im really more concerned with how to do this in the chrome debugger although firebug is appreciated to!

link|improve this question

73% accept rate
feedback

3 Answers

up vote 10 down vote accepted

Inspect the element, and then:

For Firebug:

Note that the hover, CSS code will disappear if you fly over the element again (you must recheck :hover).

For Chrome:

Note that this feature is not yet available in the Stable channel version of Chrome. The easiest way to use this feature right now is to use the Canary build, which runs in parallel with any other version.

link|improve this answer
which version of chrome is this? – Greg Guida Jul 20 '11 at 19:28
do you know if it's available on any more stable versions? beta? dev? – Greg Guida Jul 20 '11 at 19:36
1  
I'm on dev. It's working here. – binarious Jul 20 '11 at 19:41
Beta: no, dev: yes. You might as well just stick with Firebug for now, unless it's vital that you debug this in Chrome. – thirtydot Jul 20 '11 at 19:42
feedback

In Chrome, you just right click (so that you ARE hovering) the div and click on Inspect. If the Inspect box is in the console, when you right click it, your mouse "fall" in the console and you are still hovering the div at the same time. Then you cqn see the :hover pseudo style normally.

This is stupid, but this is my workaround.

link|improve this answer
this is almost impossible on very small elements, thanks for the tip though – Greg Guida Jul 20 '11 at 19:29
no, not really. just expand the console so that it takes most of the screen. then the rightclick dropdown menu should be partly in the console. then you re done. – Cystack Jul 20 '11 at 19:33
I have to admit, I've resorted to similar things in the past. – thirtydot Jul 20 '11 at 19:37
haha, even that is so annoying. Just goes to show how front end developers have been treated like second hand citizens until recently – Greg Guida Jul 20 '11 at 19:38
yea glad to see new Chrome will implement better things (though it's hard to be faster than that, because it looks but stupid but it actually feels natural and does not add any click to get to the info) – Cystack Jul 20 '11 at 19:39
feedback

In Firebug you can select an element using :hover with the blue select arrow tool and you'll be able to see it while you are hovering over the element. Unfortunately when you move your mouse it goes away, but you can see what line it is on and edit the CSS through the firebug css tab after that.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.