Find invalid, overridden, inactive, and other CSS

Sofia Emelianova
Sofia Emelianova

This guide assumes that you're familiar with inspecting CSS in Chrome DevTools. SeeView and change CSSto learn the basics.

Inspect the CSS you author

Suppose that you added some CSS to an element and want to make sure the new styles are applied properly. When you refresh the page, the element looks the same as before. Something is wrong.

The first thing to do isinspect the elementand make sure that your new CSS is actually applied to the element.

Sometimes, you'll see your new CSS in theElements>Stylespane but your new CSS is inpale text,non-editable, crossed out, or has a warning or hint icon next to it.

Understand CSS in the Styles pane

TheStylespane recognizes many kinds of CSS issues and highlights them in different ways.

Matched and unmatched selectors

TheStylespane shows matched selectors in regular text and unmatched ones inpale text.

Matched selector in regular text and unmatched selectors in pale text.

Invalid values and declarations

TheStylespane crosses out and displaysWarning.warning icons next to the following:

  • An entire CSS declaration (property and value) when the CSS property is invalid or unknown.
  • Just the value when the CSS property is valid but the value is invalid.

Invalid property name and invalid property value.

Overridden

TheStylespane crosses out properties that are overridden by other properties according to theCascading order.

In this example, thewidth: 300px;style attribute on the element overrideswidth: 100%on the.youtubeclass.

Inactive

TheStylespane displays inpale textand putsInformation.information icons next to properties that are valid but have no effect because of other properties.

These pale properties are inactive because of CSS logic, not theCascading order.

Inactive CSS declaration with a hint.

In this example, thedisplay: block;property disablesjustify-contentandalign-itemsthat control flex or grid layouts.

Inherited and non-inherited

TheStylespane lists properties inInherited from <element-name>sections depending on theirdefault inheritance:

  • Inherited by default are in regular text.
  • Non-inherited by default are inpale text.

The 'Inherited from body' section listing inherited and non-inherited CSS.

Shorthand

Shorthand (concise) propertieslet you set multiple CSS properties at once and can make your stylesheet more readable. However, due to the short nature of such properties, you may miss a longhand (precise) property that overrides a property implied by the shorthand.

TheStylespane displays shorthand properties asDrop-down.drop-down lists that contain all the properties that are shortened.

The shorthand property with a drop-down list.

In this example, two of four shortened properties are actually overridden.

Non-editable

TheStylespane displays properties that can't be edited initalic text.For example, the CSS from the following sources can't be edited:

  • user agent stylesheet—Chrome's default stylesheet.

    The CSS from user agent stylesheet.

  • Style-related HTML attributes on the element, for example, height, width, color, etc. You can edit them in the DOM tree and this updates the CSS in theStylespane, but not the other way around.

    In this example, theheight= "48"attribute on an<svg>element is set to50.This updates the corresponding property undersvg[Attributes Style]in theStylespane.

Inspect an element that still isn't styled the way you think

To try to find what goes wrong, you may want to check:

TheElements>Stylespane displays the exact set of CSS rules as they are written in various stylesheets. On the other hand, theElements>Computedpane lists resolved CSS values that Chrome uses to render an element:

  • CSS derived frominheritance
  • Cascadewinners
  • Longhand properties (precise), not shorthand (concise)
  • Computed values, for example,font-size: 14pxinstead offont-size: 70%

Understand CSS in the Computed pane

TheComputedpane also displays various properties differently.

Declared and inherited

TheComputedpane lists the properties declared in any stylesheet in regular font, both element's own and inherited. Click theExpand.expand icon next to them to see their source.

Declared properties.

To see the declaration in theStylespane, hover over the expanded property and click theArrow right.arrow button.

The arrow button next to the property.

To see the declaration in theSourcespane, click the link to the source file.

The link to the source file.

For properties with multiple sources, theComputedpane shows theCascade winnerfirst.

A property with multiple sources.

Runtime

TheComputedpane lists property values calculated at runtime inpale text.

Property values calculated at runtime.

In this example, Chrome calculated the following for the<ul>element:

  • Thewidthrelative its parent,<div>
  • Theheightrelative to its children, the two<li>elements

Non-inherited and custom

To make theComputedpane showallproperties and their values, checkCheckbox.Show all.All properties include:

To break this big list into categories, checkCheckbox.Group.

All properties grouped.

This example shows the initial values for non-inherited properties underAnimationand custom properties underCSS Variables.

Search for duplicates

To investigate a specific property and its potential duplicates, type that property name in theFiltertextbox. You can do this both in theStylesandComputedpanes.

The Filter textboxes on Styles and Computed panes.

SeeSearch and filter an element's CSS.

Find unused CSS

SeeCoverage: Find unused JavaScript and CSS.