You learned to create a simple form with Flexbox in the previous article. Today, you’ll understand how to create the same thing with CSS Grid.

Here’s what we’re building:

h4IM1DtbqMnvHdQDWjbAjyTB8HFHB8hBc3KV

Building the form with CSS Grid

From the picture above, we know the form contains two elements:

  1. An email field
  2. A submit button

Here’s the HTML:

<form>   <input type="email" name="email">   <button type="submit">Send</button> </form>

To build the form with CSS Grid, you need to set the parent’s display property to grid.

form {   display: grid; }

Here’s what you get:

wWF5gknxOICW0uVNJULglsbw9Tq8HjUXy7CS

Why did we get two rows?

We get two rows because we did not specify the number of columns for the grid. Browsers will always default to one column.

For this form, we need to set two columns.

  1. The first column should expand to fill up any available space
  2. The second column should be sized according to its contents

For the first column, we can use the fr unit. For the second column, we can use auto.

form {   display: grid;   grid-template-columns: 1fr auto; }

With this, you have completed form’s layout. Here’s a Codepen for you to play around with:

Simple form with CSS Grid by Zell Liew (@zellwk) on CodePen.

When elements are of unequal height

We will simulate elements of unequal height by substituting the button’s text with an SVG. This is the same as what we’ve done in the previous article.

<form action="#">   <input type="email" placeholder="Enter your email">   <button type="button"><svg> <!-- a smiley icon --> </svg></button> </form>
2fkg2F6SaWOZfNDsonfP1joVRlDl-eIlHjCs

Notice the input’s height increases to fit the large SVG icon too! Once again, we don’t have to write any extra code. This happens because grid items are stretched vertically to fill up any available space.

If you want to change this behavior, you can change the align-items property to either start, end, or center.

TZFrmkspxaoTilvhtb7K2CqB9qhDZLiwSgaM

Here’s a Codepen for you to play around with:

Simple form with CSS Grid (with SVG Button) by Zell Liew (@zellwk) on CodePen.

Wrapping up

CSS Grid makes it easy to create layouts. It doesn’t have to be used for macro layouts. It can also be used for micro layouts like the form example you’ve seen here.

Have fun with CSS Grid!

Thanks for reading. Did this article help you in any way? If you did, I hope you consider sharing it. You might help someone out. Thank you!

This article was originally posted on my blog.
Sign up for my newsletter if you want more articles to help you become a better front-end developer.