See :hover state in Chrome Developer Tools

CssGoogle ChromeBrowserGoogle Chrome-DevtoolsHover State

Css Problem Overview


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 different states for an element.

> I can't seem to find anything similar in Chrome. Am I missing something?

Css Solutions


Solution 1 - Css

Now you can see both the pseudo-class rules and force them on elements.

To see the rules like :hover in the Styles pane click the small :hov text in the top right.

Toggle element state

To force an element into :hover state, right click it and select :hover.

Force element state

Additional tips on the [elements panel](https://developers.google.com/chrome-developer-tools/docs/shortcuts#elements-panel "elements panel") in [Chrome Developer Tools Shortcuts](https://developers.google.com/chrome-developer-tools/docs/shortcuts "Chrome Developer Tools Shortcuts").

Solution 2 - Css

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.

Solution 3 - Css

I wanted to see the hover state on my Bootstrap tooltips. Forcing the the :hover state in Chrome dev Tools did not create the required output, yet triggering the mouseenter event via console did the trick in Chrome. If jQuery exists on the page you can run:

$('.YOUR-TOOL-TIP-CLASS').trigger('mouseenter');

Forcing hover or mouseenter for Bootstrap Tooltips

Solution 4 - Css

There are several ways to see HOVER STATE styles in Chrome Developer Tools.

Method 01

enter image description here

Method 02

enter image description here

With Firefox Default Developer Toll

enter image description here

With Firebug

enter image description here

Solution 5 - Css

In case it helps, this seems to be easier in the latest Chrome (47.0.2526.106):

Inspect element and then click on the three white dots in the left gutter:
click on the three white dots

Then choose the desired element state from this dropdown:
this dropdown

Solution 6 - Css

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. ...

Solution 7 - Css

I know that what I do is quite the workaround, however it works perfectly and that is the way I do it everytime.

Undock Chrome Developer Tools

Then, proceed like this:

  • First make sure Chrome Developer Tools is undocked.
  • Then, just move any side of the Dev Tools window to the middle of the element you want to inspect while hovered.

Hover on element

  • Finally, hover the element, right click and inspect element, move your mouse into the Dev Tools window and you will be able to play with your element:hover css.

Cheers!

Solution 8 - Css

I was debugging a menu hover state with Chrome and did this to be able to see the hover state code:

In the Elements panel click over Toggle Element state button and select :hover.

In the Scripts panel go to Event Listeners Breakpoints in the right bottom section and select Mouse -> mouseup.

Now inspect the Menu and select the box you want. When you release the mouse button it should stop and show you the selected element hover state in the Elements panel (look at the Styles section).

Solution 9 - Css

Changing to hover status in Chrome is pretty easy, just follow these steps below:

  1. Right click in your page and select inspect

[![enter image description here][1]][1]

  1. Select the element you like to have inspect in the DOM

[![enter image description here][2]][2]

  1. Select the pin icon [![enter image description here][3]][3] (Toggle Element State)

  2. Then tick the hover

[![][4]][4]

Now you can see the hover state of the selected DOM in the browser! [1]: https://i.stack.imgur.com/NFf9H.png [2]: https://i.stack.imgur.com/zNXE2.png [3]: https://i.stack.imgur.com/f4wrf.png [4]: https://i.stack.imgur.com/lLkqR.jpg

Solution 10 - Css

I think this is no longer an issue in Chrome but just in case. I wrote this jQuery script to inspect the DOM when I move around with the TAB key.

If changed to use 'mouseover', would look like this:

$("body *").on('mouseover', function(event) {   	
    console.log(event.target);		
    inspect(event.target);
    event.stopPropagation();
});

You can easily modify it to remove the event handler whenever you click or do something on an element you want to stop at.

Solution 11 - Css

I could see the style by following below steps suggested by Babiker - "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."

For changing style follow above steps and then - Change your browser tab by pressing ctrl + TAB on the keyboard. Then click back on the tab you want to debug. Your hover screen will still be there. Now carefully take your mouse to developer tool area.

Solution 12 - Css

In my case, I want to dubug bootstrap tooltip. But the methods above not work for me. I guess bootstrap implemented this by something like mouse in/out event.

Anyway, when I hover on a button, it will generate a brother html element below the button, so I select the button's parent element in "Elements" tab of "Developer tools" window, hover the button, and "Ctrl + C", then I can paste the source code which contains the generated code. Last find the generated code, and add it to the source code by "Edit as HTML" in "Elements" tab.

Hope it can help somebody.

Solution 13 - Css

It's also possible that the code can be hidden in the database and there is no actual file containing it. A client of mine has the "Travelify" theme by Colorlib and some of the options from the WP admin GUI write directly to the DB and the DB generates the css code on the fly - I can see the css in html source but nowhere in any actual files. This drove me crazy and took me awhile to figure out. There's a great DB search tool for WP called "Search and Replace" by Inpsyde GmbH that I have found to be invaluable. Be careful with it of course!

Cheers!

Solution 14 - Css

For me in order to debug this tooltip i click on toggle device toolbar to switch to mobile view and then click on div that has the hover effect, you can also click on focus-visible to see the spacing between the div and tooltip, hope this will help.

enter image description here

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionBenView Question on Stackoverflow
Solution 1 - CssTravis NorthcuttView Answer on Stackoverflow
Solution 2 - CssBabikerView Answer on Stackoverflow
Solution 3 - Cssk0pernikusView Answer on Stackoverflow
Solution 4 - CssSantosh KhalseView Answer on Stackoverflow
Solution 5 - CssIanpView Answer on Stackoverflow
Solution 6 - Css700 SoftwareView Answer on Stackoverflow
Solution 7 - CssrmartrenadoView Answer on Stackoverflow
Solution 8 - CssLeniel MaccaferriView Answer on Stackoverflow
Solution 9 - CssAlirezaView Answer on Stackoverflow
Solution 10 - CssdavidmontoyagoView Answer on Stackoverflow
Solution 11 - CssRamView Answer on Stackoverflow
Solution 12 - CssSean SongView Answer on Stackoverflow
Solution 13 - CsssqwuadeView Answer on Stackoverflow
Solution 14 - CssPlvtinumView Answer on Stackoverflow