Open In App

Computed Tab in Google Chrome Browser

The computed tab is present in the Elements Tool in the DevTools of Chrome and is used to provide a list of all CSS properties of the selected element. You can also filter the properties and get the file name, which you can click to open that file in the Sources Tool. The tool also provides the box model of the selected elements, which can be used to inspect box properties such as padding, margin, border, etc.

Benefits of using Computed Tab:

The various benefits of computed tabs are:

How to open Computed Tab in Chrome:

The computed tab is present in the elements tab, which is a tool in DevTools. To open it, follow these steps:



Step 1: Using Chrome, visit the web page where you want to use the tab. Right-click the page and click Inspect to open DevTools, or you can use the shortcut key “Ctrl+Shift+I“.

Step 2: In DevTools, click the Elements tab, and in the tab there will be a section with various panes or tabs such as styles, computed, layout, etc. Click on the computed tab.

Opening Computed Tab

Various options available Computed Tab:

The various option provided in the Computed Tab are:

Various options in Computed Tab

When you expand the property you get the various values that have be set for the property in different classes in different files or same files. The displayed value is the overridden value among all specified values. You also get the name of the file where that CSS property is specified.

Links to open in certain tabs

Usage example of Computed Tab:

Let’s use the tab for getting list of properties of specific elements of GFG site.

Step 1: Using Chrome visit GFG site and open DevTools and located the Computed tab.

Step 2: Select the element which list of properties you want to check and view the properties and inspect the box model as required.

Using the Computed Tab in GFG site

The Computed Tab is very useful for developers to inspect the CSS properties of a specific selected element. Developers have various options to filter the properties, group the properties or inspect the box model.

Article Tags :