grid-column: auto;
grid-column: 1;
grid-column: 1 / 3;
grid-column: 1 / span 2;
grid-column: main-start;
grid-column: main-start / main-end;
grid-column: inherit;
grid-column: initial;
grid-column: revert;
grid-column: revert-layer;
grid-column: unset;
This property is specified as one or two <grid-line>
values.
If two <grid-line>
values are given they are separated by "/". The grid-column-start
longhand is set to the value before the slash, and the grid-column-end
longhand is set to the value after the slash.
Each <grid-line>
value can be specified as:
- either the
auto
keyword - or a
<custom-ident>
value - or an
<integer>
value - or both
<custom-ident>
and <integer>
, separated by a space - or the keyword
span
together with either a <custom-ident>
or an <integer>
or both.