grid-column-start

Defines which vertical grid line a grid item should begin at. You can specify a line number or a named line.

Quick example

.item {
  /* Starts the item at the 2nd vertical grid line */
  grid-column-start: 2;
}

.item-named {
  /* Starts at a line named 'content-start' */
  grid-column-start: content-start;
}

Quick facts

Initial value
auto
Inherited
No
Applies to
grid items and boxes within a grid container
Animation type
discrete

grid-column-start Browser Support

Widely available Since 2017 95% global usage

This feature is well established and works across many devices and browser versions. It has been available across browsers since 2017.

Safe to use without fallbacks.

57+
52+
10.1+
16+
ESC