Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am struggling with a reluctant a:hover css style which I cannot override.

I tried to inspect the element in firebug, but I cannot see why it won't work. I don't even see how to properly inspect a :hover css event in firebug.

I have seen:
Hover Inspection in Firebug http://blog.borngeek.com/2010/04/16/hover-inspection-in-firebug/
but I have not figured out how to reproduce the steps mentioned there.

Also: Pseudo-Phantoms http://meyerweb.com/eric/thoughts/2009/11/03/pseudo-phantoms/

How do I inspect/debug CSS pseudo classes like :hover with firebug?

share|improve this question

2 Answers

up vote 31 down vote accepted

It's pretty easy. Just select the element you want to inspect. And then, from the panel on the right side, click on the Style menu item. There you can select the pseudo class :hover

EDIT

Here's an image : enter image description here

share|improve this answer
I never knew about that! That's so useful! – Chowlett Mar 22 '11 at 9:48
That's basically what's written in the blog post linked in the question, but I don't see this at all. I'll check again. – augustin Mar 22 '11 at 10:07
@augustin, added an image in case you're having issues. – JohnP Mar 22 '11 at 10:27
i didn't know that @_@ nice – corroded Mar 22 '11 at 10:32
I use it a lot, comes very handy when you want to debug those pesky on hover CSS only menues – JohnP Mar 22 '11 at 10:33
show 4 more comments

Theres also the INSPECT ELEMENT option, just rightclick on the hovered element in Firefox + Firebug, and thats it. The style menu is handly too.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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