diff --git a/curriculum/challenges/english/25-front-end-development/lecture-working-with-css-grid/673226b97d4a731e0577ae93.md b/curriculum/challenges/english/25-front-end-development/lecture-working-with-css-grid/673226b97d4a731e0577ae93.md index ebe02b2e001..02c9ce264ab 100644 --- a/curriculum/challenges/english/25-front-end-development/lecture-working-with-css-grid/673226b97d4a731e0577ae93.md +++ b/curriculum/challenges/english/25-front-end-development/lecture-working-with-css-grid/673226b97d4a731e0577ae93.md @@ -14,35 +14,35 @@ Watch the lecture video and answer the questions below. ## --text-- -What do the `grid-column` and `grid-row` properties specify in a grid layout? +How do you design a grid layout with the `grid-template-areas` property? ## --answers-- -The size of the grid container. +With comma separated values like `1 / 4` to represent the different rows and columns of the layout. ### --feedback-- -Focus on the property that assigns visual labels for the layout. +Recall that this property uses separate strings, each with separate values, to represent the different rows and columns of the layout, respectively. --- -The alignment of the entire grid. +With comma separated values like `header` and `footer`. ### --feedback-- -Focus on the property that assigns visual labels for the layout. +Recall that this property uses separate strings, each with separate values, to represent the different rows and columns of the layout, respectively. --- -The horizontal and vertical placement of grid items. +With strings of space-separated values to represent the different rows and columns of the layout. --- -The size of grid tracks. +With space-separated values like `2fr 1fr 1fr`. ### --feedback-- -Focus on the property that assigns visual labels for the layout. +Recall that this property uses separate strings, each with separate values, to represent the different rows and columns of the layout, respectively. ## --video-solution--