From fc515b2362b69a6177eeed4fd7ef7fa06a6348c5 Mon Sep 17 00:00:00 2001 From: Kristofer Koishigawa Date: Thu, 19 Dec 2024 23:53:26 +0900 Subject: [PATCH] fix: grid template areas multiple choice question (#57617) --- .../673226b97d4a731e0577ae93.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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--