15
loading...
This website collects cookies to deliver better user experience
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.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, DevTools
and go to the Console
tab.document.designMode = "on"
and press the enter key.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.Eye Dropper
mode using the small dropper icon. The eye dropper
mode helps you select a color from the document and use it elsewhere. Eye Dropper
mode is on, you can highlight and select the colors from the web page itself.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;
}
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. 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. 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.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%);
Mozilla Firefox
DevTools provides a clip-path editor to create the shape with a few drag and drop.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.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.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.CSS Overview
, beside the Console
tab. Go to the CSS Overview and click on the Capture overview
button.Colors
information of my portfolio website. You can browse other information like the font info, unused declarations, and more.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
.Changes
tab. You can find it just before the Fonts
tab we have seen above.Changes
tab to your source code editor.Animations
tool helps you with that. You will find the Animations
sub-tab under the Inspector
tab of Firefox DevTools.Device Toolbar
is to help you with it.Device Toolbar
by clicking on the icon beside the inspector icon.