In the Chrome developer panel, is there a keyboard shortcut for the element selector?

Google ChromeGoogle Chrome-Devtools

Google Chrome Problem Overview


In the Chrome developer panel, this tool...

enter image description here

lets you select elements and go directly to them in the DOM view, and see their CSS attributes.

Safari has the same tool.

Is there a keyboard shortcut to activate that tool (once you have the panel open)?

Google Chrome Solutions


Solution 1 - Google Chrome

To open / switch from inspect element mode and browser window, you can do:

  • On Mac - + Shift + C

  • On Windows / Linux - Ctrl + Shift + C OR F12

For more useful keyboard shortcuts, refer to the developer tools documentation.

Solution 2 - Google Chrome

The shortcut is Ctrl+Shift+C (source).

You can also right click any element in a web page and click Inspect element.

Solution 3 - Google Chrome

Ctrl + Shift + C for linux as well.

Solution 4 - Google Chrome

On Windows & Linux, to bring up the "Inspect element" pane at the bottom:

  • You can either use: Ctrl+Shift+C

  • OR you can use: F12

While you can usually right click elements in a web page and click Inspect element, it's useful to know these keyboard shortcuts for when a page has JavaScript to disable right-click in that page.

Solution 5 - Google Chrome

On a Mac you can use + + I

This is what works for me.

Here's a resource where you can find all these shortcuts https://developers.google.com/web/tools/chrome-devtools/shortcuts

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
QuestionEthanView Question on Stackoverflow
Solution 1 - Google ChromeShreedharView Answer on Stackoverflow
Solution 2 - Google ChromeamiregelzView Answer on Stackoverflow
Solution 3 - Google ChromeMichael ColeView Answer on Stackoverflow
Solution 4 - Google ChromeJohnGHView Answer on Stackoverflow
Solution 5 - Google ChromeSabinView Answer on Stackoverflow