10 DevTools tricks to help you with CSS and UX design

10 DevTools tricks to help you with CSS and UX design

Learn how to use the browser's DevTools for CSS and UX Design. Here are 10 tricks I found extremely useful for web development. Please read on.

Β·

10 min read

Introduction

Web development is much more fun now than ever. We have increasing opportunities with frameworks, libraries, communities, skills, and tools compared to what we had a decade ago. Today, there are hardly any web developers who want to limit themselves to write just the business logic. Instead, they want to explore design, look-and-feel, build a user experience end to end.

Many times, it is challenging without the support of proper tools. This article will learn about ten things you can do using the browser's DevTools to make yourself more productive with CSS and User Experience(UX) Design. I hope you enjoy learning it.

What are DevTools?

The modern browsers provide web developers with tools to help debug the source code, try out the changes early, and build the web page faster. The Google Chrome browser calls it DevTools, Mozilla Firefox users know it as Web Dev Tools, and the Microsoft Edge browser lovers would know it as Developer Tools. For the sake of simplicity, we will refer to all of them as DevTools in this article.

You can use the key combinations, Option + ⌘ + I (on macOS) or Shift + CTRL + I (on Windows/Linux), to launch the DevTools from your favorite browser. For example, the image below shows the DevTools of the Chrome browser.

image.png Chrome Browser DevTools

Alright, let's dive into knowing the Tips & Tricks now πŸ‘‡.

1. Turn the Design Mode "ON"

You can turn the design mode on to edit any texts on your website. It is convenient to test how dynamic content(like texts) may impact your layout. To enable it,

  • Open the DevTools and go to the Console tab.
  • Type document.designMode = "on" and press the enter key.

Now you have the browser's document editable the way you want. For example, in the image below, we see some text changes and the notification count changes.

1_design_mode_on.gif Figure 1.1: Design Mode On

I had shared about this cool trick as Twitter tips a while back.

All the browsers support this, and it also works with iFrames. Great, let's move to the next one.

2. Color Picker

Color Picker is one of the most used tools in the DevTools set for web developers & designers. You can play with the color combinations, contrasts, accessibility all with this tool.

2.color_picker_1.png Figure 2.1: Color Picker

Let us take a look at the Color Picker interface. The image below shows the Color Picker of the Chrome DevTools. It has primarily four sections,

  1. Color Selector/Picker: You can select any color by dragging your mouse pointer in a color range for a specific color type. You can also select a color type along with the opacity value. Based on your color selection, you can copy the color code in different formats like RGB, HEX, and more.
  2. Eye Dropper: You can toggle between the Color Picker and Eye Dropper mode using the small dropper icon. The eye dropper mode helps you select a color from the document and use it elsewhere.
  3. Color Contrast Ratio: When you design a web page with a background color, it is crucial to maintain the color contrast and ratios of text, link, other HTML element colors. You can check the color contrast ratio and adjust it accordingly to meet the accessibility guidelines.
  4. Colore Palettes : Last is the color palettes to choose from different types of color options.

2.color_picker_2.png Figure 2.2: Color Picker Sections

The image below shows how to select a color from the color selector tool.

2_color_picker_move.gif Figure 2.3: The Color Selector

Here is a quick demonstration of how to check the color contrast ratio and make corrections.

2_color_picker_contrast.gif Figure 2.4: Color Contrast Ratio

When the Eye Dropper mode is on, you can highlight and select the colors from the web page itself.

2_color_picker_eye_ddropper.gif Figure 2.5: The Eye Dropper Mode

The color picker tool interface may vary from one browser to another. All the examples we discussed so far are using the chrome browser's DevTools.

3. Flexbox Editing and Debugging

Using CSS Flexbox container to achieve the Flexbox module is ubiquitous in web design. The flexible layout is the easy answer for many of the layout issues we had earlier.

.flex-container {
  display: flex;
  height: 600px;
  flex-wrap: wrap;
  align-content: space-between;
}

The Flexbox layout module has many properties that control the layout and position of the elements. The Google Chrome browser version 90 got us a super cool tool to edit and debug Flexbox properties.

Whenever an HTML page element has the display: flex or display: inline-flex, you will get the flex badge near the element in the Elements panel. In addition, the Styles panel will show a new icon to open the Flexbox editor.

3_open_flex_editr.png Figure 3.1: The Flexbox Editor Icon

Click on the icon to open the editor. Now, you will be able to select any of the flexbox properties as per your needs. As you chose the properties, they get added to the respective HTML element's style.

3_flex_editor.png Figure 3.2: The Flexbox Editor

4. Gradient Selector

The CSS gradients allow you to show smooth transitions between two or more colors. Usually, there are two types of gradients you can create,

  1. Linear Gradients: With this type of gradient, the color transition can take place left, right, up, down, and diagonally.
  2. Radial Gradients: Their centers define the radial gradients.

To create a gradient, we use parameters like directions, colors, positions. You may have to try out different values for each parameter to achieve the gradient you are looking for. The Google Chrome Devtools provides a Gradient Selector that helps you precisely with that. You can try and change the parameter values to get to your preferred gradient faster.

The image below shows a linear gradient with a direction of 45 degrees and a couple of colors. Clicking on the direction value shows a direction selector. You can adjust the value to any direction using it.

4_gradient.png Figure 4.1: The Gradient Selector

See this tweet to know how easy it is to play with it(I had fun doing it).

5. Clip-Path Editor

CSS clip-path is a great way to create shapes of your choice. The clip-path property creates a clipping region to decide the part of the element to show. The area outside of the clipping region will be hidden. Here is an example of a rectangular polygon using the clip-path CSS property,

clip-path: polygon(10% 10%, 90% 10%, 90% 90%, 10% 90%);

It is common for web developers to try out different combinations of the clip-path values to settle with a shape of their choice. However, it is a bit hard to remember and code for the clip-path property. It would be far easier if we get an editor to create a shape of our choice, which gives us the respective clip-path value. The Mozilla Firefox DevTools provides a clip-path editor to create the shape with a few drag and drop.

To use it, inspect the HTML element that has the clip-path CSS property in its style. You will notice a small shape in front of the clip-path value. Click on that tiny shape to select the clipped region of the element.

clip_1.png Figure 5.1: Select the Clipped Area

The image below shows the clipped area selected.

clip_2.png Figure 5.2: Clipped Area Selected

Now, you can drag-and-drop any of the points of the clipped shape and adjust it based on your need. As you do that, the clip-path property value gets changed as well. It is such a powerful tool to help to boost productivity.

clip_3.png Figure 5.3: Adjust the Shape

Check out the demo below and notice how the clip-path property value gets adjusted when we drag and drop the clip points. It's magical.

clip.gif Figure 5.4: Clip-Path Editor Demo

6. CSS Overview

We will now talk about an experimental feature in Google Chrome DevTools. You will love knowing about it. It is called CSS Overview. Using this tool, you can gather information about the colors, fonts, unused declarations of styles, media queries of a web page in a single place. You can then make use of this information to copy any part of it and reuse it elsewhere.

The CSS Overview feature may not be enabled in your Chrome browser by default. To enable it, please click on the settings icon at the top-right corner of the DevTools interface.

settings.png Figure 6.1: Click on the Settings Icon

Next, select the Experiments option from the left side. It will list a set of experimental features that are not available to use by default. Next, please select CSS Overview by clicking on the checkbox beside it.

experiements.png Figure 6.2: Select the CSS Overview Feature

The browser may ask you to reload the DevTools for this newly enabled feature to take effect.

reload_dev_tools.png Figure 6.3: Reload DevTools

Now, you will see a new tab, CSS Overview, beside the Console tab. Go to the CSS Overview and click on the Capture overview button.

capture_css_overview.png Figure 6.4: Capture Overview

It will capture the overview of the website/app opened in the browser currently. The image below shows the Colors information of my portfolio website. You can browse other information like the font info, unused declarations, and more.

css_overview.png Figure 6.5: CSS Overview in Action

I would encourage you strongly to try out other experimental features of the DevTools. Who knows, you may find another treasure!

7. Font Editor

This one and the following two tricks are with Mozilla Firefox DevTools. You will find similar alternatives with Google Chrome DevTools as well. Fonts play a significant role in our web applications and websites. The font size, spacing, line height, weight, decorations all matter to make the website readable and presentable.

The Font Editor tool provides you the control to adjust the font attributes. To open the font editor, please inspect an HTML element to edit the font properties. Then under the Inspector tab, you should find a sub-tab called Fonts.

font_1.png Figure 7.1: The Font Editor

Now, you can adjust the font attributes by drag-drop and selections, as we see in the image below.

font.gif Figure 7.2: Adjust the Font Attributes

8. Changes

As you make styling changes in the DevTools, it captures the changes under the Changes tab. You can find it just before the Fonts tab we have seen above.

changes.png Figure 8.1: Changes

You can directly copy the code changes from the Changes tab to your source code editor.

9. Animation Editor

Debugging animation issues could be challenging at times. The Animations tool helps you with that. You will find the Animations sub-tab under the Inspector tab of Firefox DevTools.

animation_1.png Figure 9.1: Animation Tool

You can trace and track the animation property changes by time.

animation_2.gif Figure 9.2: Animation by Time

Do you want to pinpoint a particular time or duration to inspect the animation behavior? Yes, you can drag and drop the handle, as we see in the image below.

animation_3.gif Figure 9.3: Debug Animation

10. Device Toolbar

Here goes the last trick, and it is my most favorite. One of the website/web app development criteria is adhering to the Responsive Web Design(RWD) principles. The web page should be responsive enough to meet user satisfaction on different devices(PC, Laptop, Smart Phones, Tablets, many more).

When testing out the responsiveness, you may not have all the devices available to you. First, however, it is essential to test and certify that the page doesn't break on different devices, different resolutions. The Google Chrome browser's Device Toolbar is to help you with it.

To launch your page in the responsive mode, please activate the Device Toolbar by clicking on the icon beside the inspector icon.

toggle_device.png Figure 10.1: Toggle Device Toolbar

Now you can select a device from the list to see how your webpage behaves to the responsiveness.

device.gif Figure 10.2: Test Responsiveness using the Device Toolbar

That brings us to the end of this article. I hope you enjoyed learning about these tricks. If you are aware of any other DevTools tricks to help with CSS, User Experience Design, please comment below. Let's learn together.


I hope you enjoyed this article or found it helpful. Let's connect. You can find me on Twitter(@tapasadhikary), sharing thoughts, tips, and code practices. Please hit the Subscribe button at the top of the page to get an email notification on my latest posts.

You may also like,

Did you find this article valuable?

Support Tapas Adhikary by becoming a sponsor. Any amount is appreciated!