Grid Area

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)

https://www.codecademy.com/courses/learn-css-grid/lessons/css-grid-i/exercises/grid-area?action=resume_content_item&course_redirect=learn-css

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
1 Like

thank you very much, I did it and it worked :+1:

1 Like