fix: grid template areas multiple choice question (#57617)

This commit is contained in:
Kristofer Koishigawa
2024-12-19 23:53:26 +09:00
committed by GitHub
parent 4658edae7b
commit fc515b2362

View File

@@ -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--