Grid

grid-row

Learn how to use the CSS grid-row property.

CSS grid-row

The grid-row property sets the grid row for an HTML element.

Syntax

.element {
  grid-row: 1;
}

HTML Context Example

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

<style>
.card {
  grid-row: 1;
}
</style>

Notes

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