Examine and edit HTML

You can examine and edit the page's HTML in the HTML pane.

HTML breadcrumbs

At the bottom on the HTML pane is a breadcrumbs toolbar. This shows the complete hierarchy through the document for the branch containing the selected element:

Hovering over a breadcrumb highlights that element in the page.

The breadcrumbs bar has its own keyboard shortcuts.

Searching

The Page Inspector's search box matches all markup in the current document and in any frames.

To start searching the markup, click in the search box to expand it or press Ctrl + F , or Cmd + F on a Mac. There are three types of searches that are performed automatically depending on what you enter, a full text search, a CSS selector search, and an XPath search.

The full text search will always be executed, independently of what you enter. That allows you to find CSS selectors and XPath expressions occurring within the text.

You can search elements by entering a CSS selector.

As you type, an autocomplete popup shows any class or ID attributes that match the current search term:

Press Up and Down to cycle through suggestions, Tab to choose the current suggestion, then Enter to select the first node with that attribute.

To cycle through matches, press Enter. You can cycle backwards through matches using Shift + Enter.

It is also possible to search via XPaths. This allows you to search for specific elements without the conflict of matching words within the text. For example, //a matches all <a> elements but not the letter "a" within the text content. Furthermore it allows for some more advanced searches like finding elements that start with a specific text, for example.

Match of an Inspector search using an XPath expression

HTML tree

The rest of the pane shows you the page's HTML as a tree (this UI is also called the Markup View). Just to the left of each node is an arrow: click the arrow to expand the node. If you hold the Alt key while clicking the arrow, it expands the node and all the nodes underneath it.The new Firefox 57 inspector HTML tree.

Moving the mouse over a node in the tree highlights that element in the page.

Nodes that are not visible are shown faded/desaturated. This can happen for different reasons such as using display: none or that the element doesn't have any dimensions.

There is an ellipsis shown between the opening and closing tag of an element when the node is collapsed if it has larger contents. Now children are indicated in the tree with this icon:

At the right side of some nodes there are markers shown indicating different pieces of information related to it:

event The element has one or several event listeners attached to it. Clicking the marker opens a tooltip listing the event listeners and allows you for each listener to switch to the line of JavaScript code in the Debugger where the listener is defined.
scroll The element is a scroll container, i.e. it has overflow: scroll or overflow: auto applied to it, and it has scrollable overflow.
grid The element is a grid container, i.e. it has display: grid applied to it. Clicking the marker enables the grid highlighter.
flex The element is a flex container, i.e. it has display: flex applied to it. Clicking the marker enables the flexbox highlighter.
inline-grid The element is an inline grid container, i.e. it has display: inline-grid or display: inline grid applied to it. Clicking the marker enables the grid highlighter.
inline-flex The element is an inline flex container, i.e. it has display: inline-flex or display: inline flex applied to it. Clicking the marker enables the flexbox highlighter.
custom… The element is a custom element. Clicking the marker switches to the line of JavaScript code in the Debugger where the custom element got defined.

Note: There are some useful keyboard shortcuts that can be used in the HTML tree — see the HTML pane keyboard shortcuts list.

::before and ::after

You can inspect pseudo-elements added using ::before and ::after:

Custom element definition

When you open the Inspector on a page that includes custom elements, you can view the class definition for the custom element in the Debugger:

  1. Inspect the element
  2. Click on the word custom

The source for the element's class will be displayed in the Debugger.

Whitespace-only text nodes

Web developers don’t write all their code in just one line of text. They use white space such as spaces, returns, or tabs between their HTML elements because it makes markup more readable.

Usually this white space seems to have no effect and no visual output, but in fact, when a browser parses HTML it will automatically generate anonymous text nodes for elements not contained in a node. This includes white space (which is after all a type of text).

If these auto generated text nodes are inline level, browsers will give them a non-zero width and height. Then you will find strange gaps between elements, even if you haven’t set any margin or padding on them.

Since Firefox 52, the Inspector displays these whitespace nodes, so you can see where the gaps in your markup come from. Whitespace nodes are represented with a dot: and you get an explanatory tooltip when you hover over them:

To see this in action, see the demo at https://mdn.github.io/devtools-examples/whitespace-only-demo/index.html.

Shadow roots

Any shadow roots present in the DOM are exposed in the HTML page in the same manner as the regular DOM. The shadow root is signified by a node named #shadow-root — you can click its expansion arrow to see the full contents of the shadow DOM, and then manipulate the contained nodes in a similar way to other part of the page's DOM (although with a limited featureset — you can't, for example, drag and drop or delete shadow DOM nodes).

A view of a shadow root shown inside the DOM tree in the Firefox DevTools

If a shadow DOM contains a "slotted" element (an element with a slot attribute after it has been inserted inside a <slot> element — see Adding flexibility with slots for an explanation of how these are used), the "slotted" element will be shown inside its corresponding <slot> element, with a "reveal" link alongside it. Clicking the "reveal" link will highlight the element with the slot attribute as it exists outside the shadow DOM

A view of a shadow root shown inside the DOM tree in the Firefox DevTools

This is very useful when you've got a <slot> element and you can't find the source of its content.

Note: Shadow DOM inspection was implemented in Firefox 61, but was hidden behind the dom.webcomponents.shadowdom.enabled pref until Firefox 63. It is now turned on by default.

Element popup context menu

You can perform certain common tasks on a specific node using a popup context menu. To activate this menu, context-click the element. The menu contains the following items — click on the links to find the description of each command in the Context menu reference:

* These options only appear in certain contexts, for example the "Open File in Style-Editor" option only appears when you context-click over the top of a link to a CSS file.

Context menu reference

Edit as HTML Edit the element's HTML.
(Copy) Inner HTML Copy the inner HTML for the element.
(Copy) Outer HTML

Copy the outer HTML for the element.

Pressing Ctrl + C (or Cmd + C on a Mac) also performs this action.

(Copy) Unique Selector/CSS Selector Copy a CSS selector that uniquely selects the element.
(Copy) CSS Path Copy a CSS selector that represents the full path to the element.
(Copy) Image Data-URL Copy image as a data:// URL, if the selected element is an image.
(Copy) Attribute Copy the attribute of the element.
Show DOM Properties Open the split console and enter the console command "inspect($0)" to inspect the currently selected element.
Use in Console Assigns the currently selected node to a variable named temp0 (or temp1 if temp0 is already taken, and so on), then opens the split console, enabling you to interact with that node using the console's command line.
Expand All In the tree view, expand the current element and all the elements underneath it. This is equivalent to holding the Alt key and clicking the disclosure triangle next to an element.
Collapse In the tree view, collapse the current element. This is equivalent to clicking the disclosure arrow next to an element that's expanded.
(Paste) Inner HTML Paste the clipboard contents into the node as its innerHTML.
(Paste) Outer HTML Paste the clipboard contents into the node as its outerHTML.
(Paste) Before Paste the clipboard contents into the document immediately before this node.
(Paste) After Paste the clipboard contents into the document immediately after this node.
(Paste) As First Child Paste the clipboard contents into the document as the first child of this node.
(Paste) As Last Child Paste the clipboard contents into the document as the last child of this node.
Scroll Into View

Scrolls the web page so the selected node is visible.

From Firefox 44, pressing the keyboard shortcut S will also scroll the selected node into view.

Screenshot Node Takes a screenshot of the selected node, saved to your Downloads directory. See Taking screenshots.
Create New Node Create a new empty <div> as the last child of the currently selected element. See Inserting new nodes.
Duplicate Node Create a copy of this element, and insert the copy immediately after this element.
Delete Node Delete the element from the DOM.
Attribute/Add Attribute Add an attribute to the element.
Attribute/Edit Attribute (only when invoked on an attribute) Edit the attribute.
Attribute/Remove Attribute (only when invoked on an attribute) Remove the attribute.
Open Link in New Tab (only when invoked over a link, such as an href attribute) Opens the linked item in a new tab.
Open File in Debugger (only when invoked over a link to a JS source) Opens the linked source in the Debugger.
Open File in Style-Editor (only when invoked over a link to a CSS source) Opens the linked source in the Style Editor.
Copy Link Address (only when invoked over a URL) Copy the URL.
(Change Pseudo-class) hover Set the :hover CSS pseudo-class.
(Change Pseudo-class) active Set the :active CSS pseudo-class.
(Change Pseudo-class) focus Set the :focus CSS pseudo-class.
(Change Pseudo-class) focus-within Set the :focus-within CSS pseudo-class.
(Change Pseudo-class) visited Set the :visited CSS pseudo-class.

Editing HTML

You can edit the HTML — tags, attributes, and content — directly in the HTML pane: double-click the text you want to edit, change it, and press Enter to see the changes reflected immediately.

To edit an element's outerHTML, activate the element's popup menu and select "Edit As HTML". You'll see a text box in the HTML pane:

Edit HTML directly in the Inspector panel in Firefox 57You can add any HTML in here: changing the element's tag, changing existing elements, or adding new ones. Once you click outside the box, the changes are applied to the page.

When you're editing HTML, the context menu you'll see is the normal one for working with editable text:

Copy and paste

You can use the popup menu to copy nodes in the HTML tree and paste them into the desired location.

Drag and drop

You can reorganize the HTML content of a page by moving nodes in the HTML tree. Just click and hold on any element and drag it up or down in the tree. When you release the mouse button, the element will be inserted at the corresponding position:

You can cancel the drag and drop by pressing the Esc key.

Inserting new nodes

There's a "+" icon at the top of the markup view:

Click this icon to insert an empty <div> into the document as the last child of the currently selected element. You can then edit the new node's content and styling just as you would any other node in the document.

You can access the same functionality using the "Create New Node" popup menu item.

Note that this button is disabled if the selected element's type is such that adding a last-child would have no effect (for example, if is is an <html> or <iframe> element). However, it is enabled in places where it is not valid to insert a <div>, such as <style> or <link>. In these cases the element is added as text.