Somebody can help me with this exercise…?:
In style.css, create a rule set for class c. Use grid-area to make this item take up the eighth column and rows six, seven and eight. Use span for both ending values.(Part 2 of the exercice)
Somebody can help me with this exercise…?:
In style.css, create a rule set for class c. Use grid-area to make this item take up the eighth column and rows six, seven and eight. Use span for both ending values.(Part 2 of the exercice)
grid-area: row-start / column-start / rows-end / cols-end
So, given three rows and 1 column,
grid-area: 6 / 8 / span 3 / span 1
thank you very much, I did it and it worked