DEV Community

Cover image for CSS Grid Golf
Stuart Jones
Stuart Jones

Posted on • Updated on • Originally published at horuskol.net

CSS Grid Golf

I've been playing with CSS Grid quite a bit - trying to see exactly what it can and can't do. One thing I decided to have a go at is what minimum amount of code is required to create a valid grid layout.

A simple two column layout

.container {
  display: grid;
  grid: '. .';
}
Enter fullscreen mode Exit fullscreen mode

Two empty grid cells of equal width placed side by side.

This CSS rule will create a grid containing two columns. If the container has more than two child elements, then it will automatically generate new rows as required:

<div class="container">
    <div>This is the first element.</div>

    <div>Here we have another element.</div>

    <div>This element should now be shown on the next row.</div>
</div>
Enter fullscreen mode Exit fullscreen mode

Three grid cells with content across two rows. The left hand column is wider than the right hand one to fit its content.

As you can see in the above example, the columns may adjust to fit the content as best they can. If you want more control of the column widths, you can define them in the same grid property. For example, if you want the two columns to always be equal, regardless of content, you can set the first column to be 50%. The second column will the fill the other 50% and no more:

.container {
  display: grid;
  grid: '. .' / 50%;
}
Enter fullscreen mode Exit fullscreen mode

Two grid cells of equal width. The content in the right hand grid cell wraps to fit the constricted space.

You can specify the width of the first column as a percentage or a fixed value, and the second column will automatically take up the extra space:

.container {
  display: grid;
  grid: '. .' / 200px;
}
Enter fullscreen mode Exit fullscreen mode

Two grid cells side by side. The left cell is 200 pixels wide while the right hand cell fills the remaining space.

Alternatively, you can specify both the column widths explicitly:

.container {
  display: grid;
  grid: '. .' / 200px 50%;
}
Enter fullscreen mode Exit fullscreen mode

The left cell is 200 pixels wide while the right cell is half the width of the container. The remaining space is unoccupied.

Three columns (or more)

You can define as many columns as you like. If you don't specify any column widths, then they will default to being equal, but with the ability to grow depending on content:

.container {
  display: grid;
  grid: '. . .';
}
Enter fullscreen mode Exit fullscreen mode

Three empty grid cells of equal width placed side by side.

Three grid cells with content. The left cell has grown to allow its content to fit while the other two cells have shrunk.

If you set a width for the first column, then the remaining two columns will divide the remaining space between themselves:

.container {
  display: grid;
  grid: '. . .' / 50px;
}
Enter fullscreen mode Exit fullscreen mode

Three empty grid cells. The left most cell is 50 pixels wide while the other two cells share the remaining space evenly.

You can set the column width for any number of columns from left to right, with the remaining columns sharing the remaining space:

.container {
  display: grid;
  grid: '. . . . .' / 25px 75px 25px;
}
Enter fullscreen mode Exit fullscreen mode

Five empty grid cells in one row. The first three cells are of various fixed widths while the other two cells share the remaining space evenly.

Controlling grid rows

This is where things start to get messy. The grid property is a shorthand for several other properties. So far we've used the property to specify grid-template-areas and grid-template-columns in the examples above.

Using the grid rule, we can also take control of the height of grid rows. Take this single column - the first row will

.container {
  display: grid;
  grid: '.' 10rem;
}
Enter fullscreen mode Exit fullscreen mode

Three rows with content. The first row is a fixed height while the remaining rows adjust to fit their content.

To control the heights of multiple rows:

.container {
  display: grid;
  grid: '.' 10rem
        '.' 5rem;
}
Enter fullscreen mode Exit fullscreen mode

Three rows with content. The first and second row have different fixed heights while the last row fits its content.

Rows and columns

.container {
  display: grid;
  grid: '. .' 5rem
        '. .' 5rem;
}
Enter fullscreen mode Exit fullscreen mode

Five grid cells arranged into multiple rows. The first two rows have a fixed height while the third shrinks to fit its content.

Every row must have the same number of columns:

.container {
  display: grid;
  grid: '. .' 5rem
        '. . .' 5rem;
}
Enter fullscreen mode Exit fullscreen mode

Five empty cells arranged into five rows which shrink or grow to fit their content.

If you want to control column widths:

.container {
  display: grid;
  grid: '. .' 5rem
        '. .' 
        / 200px;
}
Enter fullscreen mode Exit fullscreen mode

Four grid cells arranged into a grid with two columns and two rows.

See what I mean about getting a bit messy - and we've only done about half the things that the grid property itself can use.

Be explicit

While the grid shorthand is nice for fairly trivial layouts, it is a fairly powerful shorthand, which means it can quickly get quite complex when trying to add in lots of rules. In fact, we've only covered about half of the properties that grid can handle.

While coding golf experiments can be fun and instructive, I prefer to be more explicit/expressive with actual code. Anything beyond the simple column definitions like above, and I would rather avoid using the shorthand property.

.container {
  display: grid;
  grid-template-areas: '. .'
                       '. .';
  grid-template-columns: 200px 1fr;
  grid-template-rows: 5rem 
                      min-content;
}
Enter fullscreen mode Exit fullscreen mode

Four grid cells arranged into a grid with two columns and two rows.

Top comments (0)