grid-row-start
Last Updated: May 1, 2022
Specify on which row to start displaying the grid item.
Let’s say you want to start the item one on the 2nd row then you can use the following CSS
.item1{
grid-row-start:2;
}
1
2
3
4
5
6