I want to see the :hover style for an anchor I'm hovering on in Chrome. In Firebug, there's a Style dropdown that allows me to select the different states for an element. I can't seem to find anything similar in Chrome. Am I missing something?

link|improve this question
Nice question, can´t believe I "never needed it before"! – Trufa Dec 23 '10 at 1:33
feedback

3 Answers

up vote 44 down vote accepted

This is fixed (in WebKit) as of 7/5/11: https://bugs.webkit.org/show_bug.cgi?id=63932. This feature is currently available in the Chrome dev channel (14.0.825.0 dev-m as of this writing). This shows the functionality:

enter image description here

link|improve this answer
How to test a:hover span {background:red}? – Jitendra Vyas Aug 18 '11 at 10:13
I think this only works for <a> elements. Naughty vBulletin has :hover states on some <tr>'s. – Cobby Nov 2 '11 at 7:42
@Cobby you're correct, this only works for <a> elements (as of this writing, anyway) – tnorthcutt Jan 16 at 16:06
feedback

EDIT: This answer was before the bug fix, see tnothcutt's answer.

This was a bit tricky, but here goes:

  • Right-click element, but DON'T move your mouse pointer away from the element, keep it in hover state.
  • Choose inspect element via keyboard, as in hit up arrow and then Enter key.
  • Look in developer tools under Matched CSS Rules, you should be able to see :hover.

PS: I tried this on one of your question tags.

link|improve this answer
That's pretty freaking awesome. Genius idea to use the arrows instead of mousing down to Inspect Element. I'll be using this method until Chrome gives me a different option. – Ben Dec 23 '10 at 19:54
Ha! This is quite clever! I use a similar technique to move hidden windows off of a disconnected display. Off-topic but check it out: Click the window's taskbar button so it has the focus. Press ALT-SPACE (system menu activates, but you can't see it). Press M. Tap the right arrow key to trigger "Move". The window is now stuck to your mouse even though you didn't click. Use your mouse to slide the window around until you find it. Finally, click to terminate the drag action. Works great when you had something open on a projector that is no longer connected, etc. – Chris Apr 11 '11 at 18:04
feedback

I don't think there is a way to do this. I submitted a feature request. If there is a way, the developers at Google will surly point it out and I will edit my answer. If not, we will have to wait and watch. (you can star the issue to vote for it)


Comment 1 by Chrome project member: In 10.0.620.0, the Styles panel shows the :hover styles for the selected element but not :active.


(as of this post) Current Stable channel version is 8.0.552.224.

You can replace your Stable channel installation of Google Chrome with the Beta channel or the Dev channel (See Early Access Release Channels).

You can also install a secondary installation of chrome that is even more up to date than the Dev channel.

... The Canary build is updated even more frequently than the Dev channel and is not tested before being released. Because the Canary build may at times be unusable, it cannot be set as your default browser and may be installed in addition to any of the above channels of Google Chrome. ...

link|improve this answer
Great investigation. I'm rocking the latest dev build (10.0.612.3) so I'll just wait a bit and hopefully I'll see the :hover goodness! – Ben Dec 23 '10 at 19:51
feedback

Your Answer

 
or
required, but never shown

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