Documentation
Learn how Polypane improves your workflow
Elements Panel
The "Elements" tab in the Edit panel lets you inspect elements in all panes at once and edit their content, style and attributes. It also gives you quick information on their dimensions, font and colors.
Inspect element
Inspecting elements in Polypane is made as easy as possible, and there's multiple ways to inspect elements:
- Hold
alt
/option
and hover over + click the element you want to inspect. - Click the inspect element button in the elements panel.
- Click the inspect element button in the Address bar.
- Press
cmd/ctrl + Shift + C
. - Right-click an element and select "inspect element" in the context menu.
Any element you hover on will be highlighted in all panes, drawing areas for the content, padding, border and margin, as well as guides for the sides of the element. It will also show you a tooltip with information like element dimensions, color and font info, and accessibility information.

When you click an element it will be inspected in the Elements panel. To stop inspecting without selecting an element, press esc
. For more on the contents of the element tooltip, read about Polypane peek.
Dom Tree view

At the top of the navigator is the document source tree view ("DOM tree"). Hover over these to highlight the element in all panes and click them to inspect them. The selected element will automatically be made visible in the tree (and be available as $0
in the Console panel).
In the treeview elements that are hidden are dimmed. Double click an attribute in the tree view to copy its value.
As you inspect elements on the page, the elements will also be highlighted in the DOM tree view.
Drag the bottom or right side (depending on where the panel is) of the DOM Tree to resize it.
Flex and Grid layout overlays
Elements that have a grid or flex display value will have a badge next to them. Clicking the badge will show an overlay in all panes that shows the grid or flex layout. Click the badge again to hide the overlay.

Navigator
Right below the dom tree is the navigator. This will show you information about the currently selected element.

Element info
Hover over the element (<h4>
in the above screenshot) to highlight it in all panes. Click a class or ID to copy it as CSS.
The icons to the right of the element name let you, from left to right:
- Reload the element styles,
- Toggle the visibility of the element,
- Create an Element screenshot of it in the selected pane,
- Copy a unique CSS or Xpath selector to clipboard,
- Inspect the element in the Chromium devtools.
If the element has children those are shown below it. Hover them to highlight in the panes, and click on any to drill down and inspect them.
On the next line, the navigator shows the foreground and background color (if defined) of an element. Click on them to copy them.
The rendered font is shown next, along with the rendered font size and line height. Clicking it will copy the CSS font declaration.
After the font information you'll see a red cross, green AA or green AAA. This indicates whether or not your text is readable according to WCAG standards at AA or AAA level. It calculates the actual contrast by taking element opacity and ancestor backgrounds into account. Hover the score to show a tooltip with a preview and the specific contrast ratio.
At the right side, the navigator displays the visual element dimensions. If the element has a specific aspect ratio, that is also shown. Click it to copy the dimensions to clipboard.
Content editor
If an element has only text content, you can edit the content here and it will be automatically applied to all panes. If an element has a mix of text content and elements as children, you will be able to select the text as "text" in list of child elements.
The content editor will automatically resize to fit the content (up to a certain height) and when you hover it a copy button will appear in the lower right that will allow you to copy the content in one go.
Style differences between panels
Polypane will show the styles applied to the pane you selected the element in. You can use the "Pane" dropdown below the navigator to switch to the styling of the element in a different pane.
Box model

Shows box model information for your element. Because an element can have different dimensions in each pane, you can select which pane to show the box model for. Hover over any part of the box model (margin, border, padding or content) to highlight just that part of the element in all panes.
The box model overview in Polypane shows more than you might be accustomed to in other browsers:
- If your element has positioning, that's shown in the box model too, along with the offset.
- A box shadow is rendered for elements that have one.
- The border radius for elements is shown (in pixels).
- If an element has a specified
overflow
value, that's shown in the bottom right.
This gives you a glanceable overview of what your element looks like.
You can click the arrow to the right of the box model to hide it so you have more space for the element editor.
Element editor
The element editor lets you change the style, computed style, attributes and dataset of the selected element, all synced between panes.

Style
The style tab will parse your CSS and list all the selectors that have effect on your element, either directly or through inherited values. It will also show the styling for pseudo elements (like ::before
and ::first-line
) and pseudo classes (like :hover
and :any-link
), as well as @keyframe and
@font-face` declarations that are applied to the element.
If a rule set is made up of multiple selectors (using ,
) then the one that targets your element will be highlighted. On the right side, you'll see the stylesheet the selector comes from, as well as the selector's specificity. Click the specificity to open an explainer page for that selector in the Browser panel. Click the [+]
icon to highlight all elements matching that selector.
Any media queries, supports queries, container queries, layers or other at-rules as well as nesting that a CSS rule is inside of are also shown.
You can edit values by clicking on them and apply them by pressing Enter. If you're editing any numerical value, you can use the up and down keys to change the value. Holding shift will change the value by 10, holding cmd (on Mac) or ctrl (Windows and Linux) changes the value by a 100, while holding alt will change the value by 0.1.
Polypane automatically suggest associated values and custom properties. To select them, click them or use the arrow keys and enter to apply. As you hover over suggestions, a live preview is shown.
For properties with a color, we'll show a preview of the color. Click on that to open a color selector that will let you live edit the color or let you pick a new color from anywhere on the screen.
For rule sets within the inherited styles, only the css properties that are inherited are shown clearly, while non-inherited styles are faded out.
When hovering over a block of CSS, checkmarks before each rule are shown. Clicking the checkmark will disable this CSS rule until you click them again or reload the page.

You can add CSS at the bottom of each selector. CSS Properties and values will be suggested as you type. Use the arrow keys and enter to select them.
Typing :
will move you from the property to the value, pressing enter will add the line and let you type a new property.
Easy copying of CSS Styles
Copy an entire CSS rule set (selector and all declaration) by hovering with your mouse before the selector. A copy icon will appear. Click that to copy a ready-to-use CSS rule set. You can also copy individual lines by clicking the same icon before each line.
Polypane will format the CSS snippets with Prettier and you can change the Prettier configuration to match your project's coding style.
Computed
The computed tab will show you the computed styles for an element. By default, it will hide all CSS properties that you didn't explicitly set. You can show all the CSS properties by clicking "Show all".
Edit the values by clicking on them just like in the style tab and click "Copy styles" to copy all your CSS declarations, or copy a single declaration by clicking the copy button before the line.
Attributes
The attributes tab will list all the attributes of an element, like class
and value
and lets you edit them live for all panes. Values will automatically wrap over multiple lines if they become too long (if you use atomic CSS for example). You can also add new attributes here. Keep the value empty for boolean values. You can delete attributes by clicking the trashcan icon.
When you add a new attribute, Polypane will suggest attributes appropriate for the element you're editing. For example, an img
will get a suggestion for an alt
attribute, but a span
will not.
While editing or adding an attribute, valid values will be suggested as well.
Classes
Polypane automatically suggests classes as you type in the class value editor. These classes are compiled from your CSS and HTML. Use the arrow keys to select the one you want to add and press enter to add it, or use your mouse to click them.
Classes list
Click the "list" icon next to the class attribute to switch to a list of all the classes that allows you to quickly toggle off (and back on) classes to see the effect in all panes.
Classes in this list are alphabetically sorted.
Data
The Data tab will list all the values stores in an elements dataset
. Values will automatically wrap over multiple lines if they become too long. You can also add new items or delete them here as well.
A11y
The A11y (Accessibility) tab shows you the accessible name and role when available, whether an element is keyboard accessible, the contrast for this element and any accessibility attributes (like aria-labelledby
set on the element). Values will automatically wrap over multiple lines if they become too long. You can also add new items or delete them here as well.
When adding new aria attributes the Elements panel automatically suggests valid attributes and valid values for the chosen attribute when applicable.
Have a question about Polypane?
Contact us any time though chat, Slack or our contact form:
Contact SupportBuild your next project with Polypane
- Use all features on all plans
- On Mac, Window and Linux
- 14-day free trial – no credit card needed
