---
layout: single
property_name: grid-column
---
Shorthand property for
The grid item's column start and end are automatically set.
The grid item starts before the first column and ends just before the third one.
The grid item spans 3 columns.
The grid items starts before the first column and spans for 4 columns, creating a new one in the process.
You can use an area name to "copy" its column start and end positions.
#grid-column
grid-column-start and grid-column-end.default
grid-column: auto auto;
grid-column: 1 / 3;
grid-column: span 3;
grid-column: 1 / span 4;
grid-column: main;