Get started viewing and changing CSS

Follow the interactive tutorial sections in this article to learn the basics of using DevTools to view and change the CSS for a page.

View the CSS for an element

  1. Open the CSS Examples demo page in a new window or tab. To open the examples, right-click the link, or press and hold Ctrl (for Windows, Linux) or Command (for macOS) and then click the link.

  2. Right-click the Inspect Me! text, and then select Inspect.

    In the DOM Tree panel under the Elements tool, the Inspect Me! element is highlighted.

    The inspected element is highlighted in the DOM Tree

  3. In the Inspect Me! element, find the value of the data-message attribute and copy it.

  4. On the page view, enter the data-message value that you copied in the Value of data-message: text box.

  5. Right-click the Inspect Me! text, and then select Inspect.

  6. In DevTools, on the Elements tool, select the Styles panel. The Inspect Me! element is highlighted in the Styles panel.

  7. In the Inspect Me! element, find the aloha class rule. This rule is displayed, because it's being applied to the Inspect Me! element.

  8. In the aloha class, find the value for the padding style and copy it.

    CSS class applied to the inspected element is highlighted in the Styles panel

  9. On the page view, paste the padding value in the Value of padding: text box.

Add a CSS declaration to an element

Use the Styles panel when you want to change or add CSS declarations to an element.

  1. First, we recommend doing the preceding View the CSS for an element tutorial.

  2. Open the CSS Examples demo page in a new window or tab.

  3. Right-click the Add A Background Color To Me! text, and then select Inspect.

  4. Click element.style near the top of the Styles panel.

  5. Type background-color or select it from the drop-down list and then press Enter.

  6. Type honeydew or select it from the drop-down list of colors and then press Enter. After you pick a color, an inline style declaration that's applied to the element is displayed In the DOM Tree,

    The background-color:honeydew declaration is applied to the element using the element.style section of the Styles panel:

    Add a CSS declaration to the element using the Styles panel

Add a CSS class to an element

To display how an element looks when a CSS class is applied to or removed from an element, see the Styles panel.

  1. First, we recommend doing the preceding View the CSS for an element tutorial.

  2. Open the CSS Examples demo page in a new window or tab.

  3. Right-click the Add A Class To Me! text, and then select Inspect.

  4. Click .cls. DevTools shows a text box where you can add CSS classes to the page element that you're inspecting.

  5. Type color_me in the Add new class text box and then press Enter. A checkbox appears below the Add new class text box, where you can toggle the class on and off. If the Add A Class To Me! element has any other classes applied to it, you can also toggle each class from here.

    The color_me class is applied to the element using the .cls section of the Styles panel:

    Apply the color_me class to the element

Add a pseudostate to a class

Use the Styles panel to permanently apply a CSS pseudostate to an element. DevTools supports :active, :focus, :hover, and :visited.

  1. First, we recommend doing the preceding View the CSS for an element tutorial.

  2. Open the CSS Examples demo page in a new window or tab.

  3. Hover on the Hover Over Me! text. The background color changes.

  4. Right-click the Hover Over Me! text, and then select Inspect.

  5. In the Styles panel, click :hov.

  6. Select the :hover checkbox. The background color changes like it did in the first step, even though you aren't actually hovering over the element.

    The next screenshot shows the result of toggling the :hover pseudostate on an element.

    Toggling the hover pseudostate on an element

Change the dimensions of an element

Use the Box Model interactive diagram in the Styles panel to change the width, height, padding, margin, or border length of an element.

  1. First, we recommend doing the preceding View the CSS for an element tutorial.

  2. Open the CSS Examples demo page in a new window or tab.

  3. Right-click the Change My Margin! text, and then select Inspect.

  4. In the Box Model diagram in the Styles panel, hover on padding. The element's padding is highlighted in the viewport.

    Depending on the size of your DevTools window, you may need to scroll to the bottom of the Styles panel to display the Box Model.

  5. Double-click the left margin in the Box Model, which currently has a value of -. The - means that the element doesn't have a value for margin-left.

  6. Type 100px and press Enter. The Box Model defaults to pixels, but it also accepts other values, such as 25%, or 10vw.

    Hovering over the element's padding:

    Hovering over the element's padding

    Changing the element's left margin:

    Changing the element's left margin

Debugging Media Queries

Media Queries are a way to make your website react to changes in the configuration settings for each user. The most common use case is to give your page a different CSS layout depending on the dimensions of the viewport.

Using separate layouts allows for a one-column layout for mobile devices and multi-column layouts when there's more screen real estate available.

Use the following steps to debug or test the Media Queries you defined in your CSS.

  1. To open DevTools, you can right-click in a webpage and then select Inspect.

  2. Click the Toggle device emulation (Device Emulation icon) button. Or, when DevTools has focus, press Ctrl+Shift+M (Windows, Linux) or Command+Shift+M (macOS).

    Opening the device toolbar

  3. With the device toolbar open, click the ... menu on the top-right and then select Show media queries:

    Showing Media Queries in the Device Toolbar

    The colored bars above the webpage represent the different media queries.

  4. Hover on the boundaries in the bars to display the values of the different media queries. Click each media query value to resize the web page to match.

    Selecting a media query from the preview bar

  5. To debug media queries and open the CSS file in the Sources editor, right-click a bar segment, and then select Reveal in source code:

    Reveal Media Queries in Sources Editor

Note

Portions of this page are modifications based on work created and shared by Google and used according to terms described in the Creative Commons Attribution 4.0 International License. The original page is found here and is authored by Kayce Basques (Technical Writer, Chrome DevTools & Lighthouse).

Creative Commons License This work is licensed under a Creative Commons Attribution 4.0 International License.