You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: microsoft-edge/devtools-guide-chromium/about-tools.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,9 +40,9 @@ Microsoft Edge DevTools includes the following tools.
40
40
|**Console** tool | An intelligent, rich command line within DevTools. A great companion tool to use with others tools. Provides a powerful way to script functionality, inspect the current webpage, and manipulate the current webpage using JavaScript. |[Console overview](console/index.md)|
41
41
|**Coverage** tool | Help you find unused JavaScript and CSS code, to speed up your page load and save your mobile users cellular data. |[Find unused JavaScript and CSS code with the Coverage tool](coverage/index.md)|
42
42
|**Crash analyzer** tool | Analyze crashes of your web app. You can input a JavaScript production stack trace, such as for non-fatal JavaScript exceptions, and then have your source maps applied to the stack trace so that you can debug faster. |[Crash analyzer tool](./crash-analyzer/index.md)|
43
-
|**CSS Overview** tool | Help you better understand your page's CSS and identify potential improvements. |[CSS Overview tool](css/css-overview-tool.md)|
43
+
|**CSS overview** tool | Help you better understand your page's CSS and identify potential improvements. |[CSS overview tool](css/css-overview-tool.md)|
44
44
|**Detached Elements** tool | To increase the performance of your webpage, find detached elements that the browser can't garbage-collect, and then identify the JavaScript object that's still referencing the detached element. Then change your JavaScript to release the element, to reduce the number of detached elements on your page, increasing page performance and responsiveness. |[Debug DOM memory leaks by using the Detached Elements tool](memory-problems/dom-leaks.md)|
45
-
|**Developer Resources**| Shows resource URLs for the webpage. |[Developer Resources tool](developer-resources/developer-resources.md)|
45
+
|**Developer resources**| Shows resource URLs for the webpage. |[Developer resources tool](developer-resources/developer-resources.md)|
46
46
|**Device Emulation**| Use the **Device Emulation** tool, also called _Device Simulation Mode_ or _Device Mode_, to approximate how your page looks and responds on a mobile device. |[Emulate mobile devices (Device Emulation)](device-mode/index.md)|
47
47
|**Elements** tool | Inspect, edit, and debug your HTML and CSS. You can edit in the tool while displaying the changes live in the browser. Debug your HTML using the DOM tree, and inspect and work on the CSS for your webpage. |[Inspect, edit, and debug HTML and CSS with the Elements tool](elements-tool/elements-tool.md)|
48
48
|**Inspect** tool | Use the **Inspect** tool to see information about an item within a rendered webpage. When the **Inspect** tool is active, you _hover_ over items in the webpage, and DevTools adds an information overlay and grid highlighting on the webpage. |[Analyze pages using the Inspect tool](css/inspect.md)|
Copy file name to clipboardExpand all lines: microsoft-edge/devtools-guide-chromium/console/index.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ ms.date: 07/12/2023
10
10
---
11
11
# Console overview
12
12
13
-
The **Console** is like an intelligent, rich command line within DevTools, and is great companion tool to use with others tools. The **Console** provides a powerful way to script functionality, inspect the current webpage, and manipulate the current webpage using JavaScript.
13
+
The **Console** is like an intelligent, rich command line within DevTools, and is a great companion tool to use with other tools. The **Console** provides a powerful way to script functionality, inspect the current webpage, and manipulate the current webpage using JavaScript.
14
14
15
15
The **Console** tool helps with several tasks, which are covered in more detail in the following articles:
Copy file name to clipboardExpand all lines: microsoft-edge/devtools-guide-chromium/css/css-overview-tool.md
+16-16Lines changed: 16 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,46 +1,46 @@
1
1
---
2
-
title: Optimize CSS styles with the CSS Overview tool
3
-
description: The CSS Overview tool in Microsoft Edge DevTools.
2
+
title: Optimize CSS styles with the CSS overview tool
3
+
description: The CSS overview tool in Microsoft Edge DevTools.
4
4
author: MSEdgeTeam
5
5
ms.author: msedgedevrel
6
6
ms.topic: conceptual
7
7
ms.service: microsoft-edge
8
8
ms.subservice: devtools
9
9
ms.date: 09/07/2022
10
10
---
11
-
# Optimize CSS styles with the CSS Overview tool
11
+
# Optimize CSS styles with the CSS overview tool
12
12
13
-
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.
13
+
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.
1. Navigate to the [TODO list demo app](https://microsoftedge.github.io/Demos/demo-to-do/) in Microsoft Edge, or to your own webpage.
22
22
23
23
1. Open DevTools by pressing **F12** or **Ctrl+Shift+I** (Windows, Linux) or **Command+Option+I** (macOS).
24
24
25
-
1. In the main toolbar, click **More Tools** and select **CSS Overview** from the list.
25
+
1. In the main toolbar, click **More Tools** and select **CSS overview** from the list.
26
26
27
27

28
28
29
-
1. The **CSS Overview** tool opens and shows a welcome screen.
29
+
1. The **CSS overview** tool opens and shows a welcome screen.
30
30
31
-

31
+

Start using the tool by capturing a new report. Click **Capture overview**, the overview report appears.
38
38
39
-

39
+

40
40
41
41
If you make changes to your webpage and want to view a new report, click **Clear overview** and then capture a new overview.
42
42
43
-

43
+

@@ -56,7 +56,7 @@ The CSS overview report contains information organized into several sections:
56
56
57
57
To view the sections of the report, use the scrollbar or click the sections in the sidebar:
58
58
59
-

59
+

60
60
61
61
62
62
<!-- ------------------------------ -->
@@ -156,7 +156,7 @@ Non-simple selectors are more complicated and tend to match more elements, poten
156
156
157
157
To see the list of non-simple selectors, on the overview report, click **Non-simple selectors** in the sidebar to scroll to the relevant section of the report:
158
158
159
-

159
+

160
160
161
161
From here, you can further analyze the impact of your changes and individual selector performance by using the **Selector Stats** feature in the **Performance** tool.
162
162
@@ -177,13 +177,13 @@ To find color contrast issues:
177
177
178
178
1. Open DevTools by pressing **Ctrl+Shift+I** (Windows, Linux) or **Command+Option+I** (macOS).
179
179
180
-
1. In the main toolbar, click **More Tools** and select **CSS Overview** from the list.
180
+
1. In the main toolbar, click **More Tools** and select **CSS overview** from the list.
181
181
182
-
1. In the **CSS Overview** tool, click **Capture overview** and then click **Colors** in the overview report sidebar.
182
+
1. In the **CSS overview** tool, click **Capture overview** and then click **Colors** in the overview report sidebar.
183
183
184
184
1. Scroll down to the **Contrast issues** sub-section to view all issues.
185
185
186
-

186
+

187
187
188
188
1. 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.
0 commit comments