Optimize CSS styles with the CSS Overview tool
The CSS Overview tool captures an overview of the CSS code used on a webpage and displays a report about the colors, fonts, and media-queries used. The tool also identifies potential color contrast issues and unused CSS declarations issues.
Open the CSS Overview tool
To open the CSS Overview tool:
Navigate to the TODO list demo app in Microsoft Edge, or to your own webpage.
Open DevTools by pressing
F12
orCtrl
+Shift
+I
(Windows, Linux) orCommand
+Option
+I
(macOS).In the main toolbar, click More Tools and select CSS Overview from the list.
The CSS Overview tool opens and shows a welcome screen.
Capture a CSS overview report
Start using the tool by capturing a new report. Click Capture overview, the overview report appears.
If you make changes to your webpage and want to view a new report, click Clear overview and then capture a new overview.
Understand the report
The overview report contains information organized in several sections:
- Summary: statistics about key CSS rules, selectors, and media queries on the page.
- Colors: colors used on the page.
- Font info: list of fonts on the page.
- Unused declarations: list of unused CSS declarations.
- Media queries: list of media queries.
To review the above sections, scroll through the report, or use the table of content sidebar.
Summary
The Summary section is useful to get a quick overview of your CSS code. It provides the number of external and inline stylesheets, the number of CSS rules, the number of selectors and their various types, and the number of media queries.
This can be used to assess the volume and consistency of your CSS codebase on a given webpage. For example, if you decided to only use class selectors, the Summary section will make it quick to detect other types of selectors like ID or attribute.
Colors
The Colors section lists all the colors used on the webpage, and groups them by background, text, fill, and border categories.
This can be useful to discover cases when several similar colors are used instead of one common color. CSS custom properties (also known as CSS variables) can be used to avoid repeating colors throughout a CSS file and therefore avoid this problem. Learn more about CSS variables on MDN).
The Colors section also contains a list of color contrast issues on the page. To learn more, see View elements with color contrast issues.
Font info
The Font info section lists all the font families used on the webpage and provides details about which sizes, weights, and line heights are used for each.
When designing a webpage, using consistent typography settings can help reach a more aesthetically-pleasing result. The Font info section can be useful to detect when too many different fonts or font styles are used.
Each font in the Font info section contains links to the DOM elements they apply to. To reveal the elements a given font applies to:
On the overview report, click Font info in the sidebar to scroll to the relevant section of the report.
Find the font family and the size, weight, or line-height you are interested in.
Click the X occurrences link next to it to reveal the list of elements.
Move your mouse over the elements in the list to highlight them in the rendered page.
Click an element to automatically open the Elements tool with that element selected.
Unused declarations
The Unused declarations section lists some of the CSS declarations that don't have an effect on their target elements.
CSS declarations are key/value pairs such as top: 42px
. CSS declarations are contained in CSS rules, and rules target specific elements on the webpage. Depending on other styles applied to an element, a CSS declaration may not have any effect.
As an example, the top: 42px
declaration will not have any effect if the element it targets is not positioned with position: absolute
or position: relative
for example.
These cases may be hard to find and the Unused declarations section helps by listing some of them. Note that not all possible cases are listed. For now, the following cases are reported:
- When the
top
,right
,bottom
, orleft
properties are used on statically positioned elements. - When the
width
orheight
properties are used on inline elements. - When the
vertical-align
property is used on elements that are not inline or table cells.
Media queries
The Media queries section lists the CSS media queries found on the webpage.
CSS media queries can be used to apply specific styles depending on the media type (for example print
or screen
) or depending on the viewport size. This is often used to make webpages respond to the available space.
When a CSS codebase becomes complex, keeping track of all the CSS media queries can be hard. The Media queries section makes this easier. Each media query in the section also contains a link to the CSS file it's defined in. To reveal that file:
On the overview report, click Media queries in the sidebar to scroll to the relevant section of the report.
In the report, find the media query you are interested in.
Click the X occurrences link next to it to reveal the corresponding files.
Click one of the files to automatically open the Sources tool with that file opened.
View elements with color contrast issues
The Colors section of the overview report can also be used to find color contrast issues on a webpage. If the current webpage contains elements where the contrast between the font color and the background color is insufficient, the Contrast issues sub-section will be displayed.
To find color contrast issues:
Navigate to the Animal Shelter demo website, which has color contrast issues, in Microsoft Edge. Or navigate to your own website.
Open DevTools by pressing
Ctrl
+Shift
+I
(Windows, Linux) orCommand
+Option
+I
(macOS).In the main toolbar, click More Tools and select CSS Overview from the list.
In the CSS Overview tool, click Capture overview and then click Colors in the overview report sidebar.
Scroll down to the Contrast issues sub-section to view all issues.
To view the elements that have a particular color contrast issue, choose the issue you want to fix and click Text. The corresponding elements are listed.
To open the corresponding element in the Elements tool, click an element in the list.
To help fix contrast issues, check out the Text contrast section of the accessibility-testing DevTools features.
Feedback
Submit and view feedback for