Read more

Inspect and Debug CSS Flexbox and Grid Layouts by using the Layouts Tab in Dev Tools

Felix Eschey
November 15, 2022Software engineer at makandra GmbH

tl;dr

In Chrome DevTools in the Layouts tab you have handy options to debug CSS Flexbox and Grid. Including:

  • Display size and lines along with labels
  • Changing their attributes
  • Change how overlay is colored and fastly switch nested elements in the Elements panel

This guide will only cover some example gif recordings on how to use with Grid, since it's basically straight forward to apply this for Flexbox by yourself afterwards.

Illustration online protection

Rails Long Term Support

Rails LTS provides security patches for old versions of Ruby on Rails (2.3, 3.2, 4.2 and 5.2)

  • Prevents you from data breaches and liability risks
  • Upgrade at your own pace
  • Works with modern Rubies
Read more Show archive.org snapshot

For this purpose a the link to documentation and a simple code pen have been added for both use cases.

Grid

You can use this Code Pen Show archive.org snapshot to play around with the different options.

Read Inspect Grid Show archive.org snapshot to check for full details.

Discover The Layouts Pane to inspect

You can toggle the grid badge for every elements that has display: grid or display: inline-grid applied to it. Now the Layout Pane will have several options on how to display this element.

Image

Use the Grid Editor to debug

You can set different properties on on how the grid elements are aligned etc. directly and track their sizes with the layout display.

Image

Change Grid Overlay Behavior

When nesting several grid, you can directly grep them in the layouts tab and change the color by which they are represented.

Image

Flexbox

The functions for flexbox basically work the same way as for grid. For this reason I will only link this Code Pen Show archive.org snapshot and encourage you to play around by yourself.

For full detail check Inspect Flexbox Show archive.org snapshot .

Posted by Felix Eschey to makandra dev (2022-11-15 09:15)