How to view css code in chrome developer tools

藏色散人
Release: 2020-11-17 11:06:47
Original
5366 people have browsed it

How to view CSS code in chrome developer tools: first open the debugging tool and click the inspect element button in the upper left corner of the debugging tool; then in the styles tab, click the link next to the CSS rule and open the definition Regular external style sheet; finally view the source file of the style.

How to view css code in chrome developer tools

# Recommended: "

css video tutorial

chrome devtools is a debugging tool that front-end developers are no longer familiar with. So how much do we know about it? Here is a summary of some common CSS debugging operations.

View CSS

View the style corresponding to the element
1. Open the debugging tool, click the check element button in the upper left corner of the debugging tool or the shortcut key (Ctrl/Cmd Shift C)


How to view css code in chrome developer tools 2. Select the element you want to view on the page. The inspected element is highlighted with a blue background in the DOM tree, and the style is in the
styles tab area on the right.
How to view css code in chrome developer tools

View external style sheet
1. In the

styles tab, click the link next to the CSS rule to open the external style that defines the rule surface. You can view the source file of the style.
How to view css code in chrome developer tools

View only the CSS actually applied to the element
1,

styles The tab will display all rules that apply to the element, including those that have been Overridden declarations. If you are not interested in overridden declarations, you can click the computed tab adjacent to styles to see only the CSS rules actually applied to the element.

2. The inherited properties are opaque. Select the

Show All checkbox to view all inherited values.

3. Note that the attributes are displayed in alphabetical order.

4,

Filter The filter can search for styles that match the rules according to the query rules.

5. When the mouse hovers over a certain row of attributes, a circular arrow button will appear. Click to jump to the style corresponding to the

styles tab.
How to view css code in chrome developer tools

View element pseudo-state
1. Click

:hov in the styles tab. Taking :hover as an example, select the :hover checkbox. If the checked element has the
:hover style added to it, it will appear in the style list. This bar style will be displayed. And the page effect will trigger the display effect without mouse hovering.
How to view css code in chrome developer tools

Add or change CSS styles

Add inline styles
1. Equivalent to adding the

style attribute to HTML attribute value. Click the area near the top of element.style, enter the newly added style attribute name, press the Tab key, enter the style attribute value, and press the Enter key. This adds an inline style.
How to view css code in chrome developer tools 2. View the effect:

How to view css code in chrome developer tools

Add a statement to an existing style rule
1. Click on the style rule to add a statement between brackets. The cursor appears, enter the attribute name, press the

tab key, enter the attribute value, and press Enter.

Modify the declaration of existing style rules
1. Double-click the original style that needs to be changed, modify the style rule, and press the

Enter key.

Add CSS classes to elements
1. Click

.cls in the styles tab. An Add new class input box will be displayed. You can enter the class name you want to add, and then press the Enter key.
How to view css code in chrome developer tools

2. Click the checkbox in front of

title to switch styles back and forth.

Add new style rule

1. Click the plus sign 1➕ in the upper right corner of the styles tab, DevTools will insert a rule under the element.style rule New rules.

2. If you want to add a new style rule at a specific position, you can hover the mouse over the previous style rule where the rule was inserted. At this time, three dots for more operations will appear in the lower right corner. Hover the x Plus sign 2➕ will appear. Clicking plus sign 2 will add a style rule after this style.

3. There are other functions for more operations here. From left to right, they are text shadow, box shadow, text color, and background color.
How to view css code in chrome developer tools

Switch style declaration

1. Click the check box before the style declaration to switch the style declaration
How to view css code in chrome developer tools

Change elements Size

1. In the box model diagram of the styles tab, hover the mouse over the area that needs to be edited, double-click, fill in the value that needs to be modified, and press Enter. The default unit of the box model is pixels, and the input percentage will also be converted into pixel values.
How to view css code in chrome developer tools

Change declaration values ​​using keyboard shortcuts

When editing the value of a declaration, you can use the following keyboard shortcuts to increment the value by a fixed amount:

  • Up Change the value to 1, or 0.1 if the current value is between -1 and 1.
  • Option Up (Mac) or Alt Up (Windows, Linux) increases by 0.1.
  • Shift Up increases by 10.
  • Shift Command Up (Mac) or Shift Page Up (Windows, Linux) increases the value by 100.

Reduction is also effective. Simply replace each instance of Up mentioned above with Down.

Use the Coverage tab to view used and unused CSS

1. Press Command Shift P (Mac) or Control Shift P (Windows, Linux, Chrome OS) while DevTools Take focus to open a menu of commands.
2. Start typing coverage and select Show Coverage. The coverage tab will be displayed.
How to view css code in chrome developer tools
3. Click "to reload and start capturing coverage" to start detecting coverage and reload the page. As the page reloads, the Coverage tab provides an overview of how much CSS (and JavaScript) is used by each file loaded by the browser. Green means using CSS. Red indicates unused CSS.
How to view css code in chrome developer tools
4. Click on a CSS file to see a line-by-line breakdown of the CSS it uses.
How to view css code in chrome developer tools

Use of color picker

Panel description

The following is a description of each UI element of the color picker:
1. Shadow .
2. Straw.
3. Copy to clipboard. Copies the displayed value to the clipboard.
4. Display value. Color representation in RGBA, HSLA or Hex.
5. Color palette. Click on one of the squares to change the color for that square.
6. Hue.
7. Transparency.
8. Display value switcher. Switch between RGBA, HSLA and Hex representation of the current color.
9. Palette switcher. Switch between the Material Design palette, custom palette, or page palette. DevTools generates the page color palette based on the colors it finds in the style sheet.
How to view css code in chrome developer tools

Use the Eyedropper to sample from the page

When you open the Color Picker, the Eyedropper is on by default. To change the selected color to another color on the page:
1. Hover over the target color in the viewport.
2. Click Confirm.

The above is the detailed content of How to view css code in chrome developer tools. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!