Grid

grid-template-columns

Learn how to use the CSS grid-template-columns property.

CSS grid-template-columns

The grid-template-columns property sets the grid template-columns for an HTML element.

Syntax

.element {
  grid-template-columns: 1fr 1fr;
}

HTML Context Example

<div class="card">
  This is a styled element.
</div>

<style>
.card {
  grid-template-columns: 1fr 1fr;
}
</style>

Notes

Experiment in the CSS playground to see how this affects layout and styling.