Grid
grid-column
Learn how to use the CSS grid-column property.
CSS grid-column
The grid-column property sets the grid column for an HTML element.
Syntax
.element {
grid-column: 1 / 3;
}
HTML Context Example
<div class="card">
This is a styled element.
</div>
<style>
.card {
grid-column: 1 / 3;
}
</style>
Notes
Experiment in the CSS playground to see how this affects layout and styling.