Skip to main content

HTML Guide

CSS: “grid-template-rows”: X is not a “grid-template-rows” value.

The specified value for the grid-template-rows property is not valid. This CSS property specifies the height of each row in a CSS grid layout.

Correct Usage of grid-template-rows

The grid-template-rows property accepts several types of values:

  1. Length values (e.g., px, em, rem):

    grid-template-rows: 100px 200px;
  2. Percentages:

    grid-template-rows: 50% 50%;
  3. Flexible units (fr):

    grid-template-rows: 1fr 2fr;
  4. Auto keyword:

    grid-template-rows: auto auto;
  5. Repeat function:

    grid-template-rows: repeat(3, 1fr);
  6. Minmax function:

    grid-template-rows: minmax(100px, 200px) auto;

Example

Here’s an example where we define two rows, one with a height of 100px and the other one of 200px.

<!DOCTYPE html>
<html lang="en">
<head>
  <title>Example of grid-template-rows</title>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <style>
    .grid-container {
      display: grid;
      grid-template-rows: 100px 200px;
    }
  </style>
</head>
<body>
  <div class="grid-container">
    <div>Row 1</div>
    <div>Row 2</div>
  </div>
</body>
</html>

Learn more:

Related W3C validator issues