grid-column-end
Last Updated: May 1, 2022
how many columns an item will span.
In the following example item will start from cloumn1 and end at column 3.
.item1{
grid-column-start: 1 ;
grid-column-end: 3 ;
}
1
2
3
4
5
6