Skip to main content

HTML Guide

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

The issue you’re encountering pertains to the use of the grid-column property in CSS, which is part of the CSS Grid Layout module. The grid-column property is typically used to specify how elements are placed along the grid columns in a grid layout.

The grid-column property is a shorthand for specifying both the starting grid line and the ending grid line for a grid item in order to define its horizontal position in the grid. The correct way to use it generally involves setting either a specific line number or a span value.

Syntax

The basic syntax for the grid-column property is:

grid-column: <start-line> / <end-line>;
  • <start-line>: The grid line where the item starts. This can be a line number, a named grid line, or a span keyword.
  • <end-line>: The grid line where the item ends. Similarly, this can also be a line number, a named grid line, or use span to indicate spanning across a number of lines.

Common Usage

  1. Specific Lines: Specify the starting and ending lines explicitly.

    grid-column: 2 / 4;

    This would place the item starting from line 2 and ending before line 4.

  2. Spanning Columns: Use the span keyword to define how many columns you want the item to span.

    grid-column: 1 / span 2;

    This would start the item at line 1 and span two columns.

Issue with grid-column: 0

The value 0 is invalid for grid-column because grid lines in CSS Grid Layout are indexed starting from 1. Attempting to use 0 implies a non-existent line and therefore results in an invalid value error.

Correcting the Issue

  1. Determine which grid line your item should start from and which line it should end on, using valid line numbers or span values.

  2. Update your CSS to use valid grid lines:

    /* Correct usage example: */
    .grid-item {
      grid-column: 1 / span 2;
    }

    Here, the grid item starts at line 1 and spans across 2 columns.

Ensure that your grid layout is properly set up with the desired number of rows and columns so that you can appropriately set valid grid-column values.

Learn more:

Related W3C validator issues