fix(curriculum): fix a typo and replace a distractor for CSS grid quiz (#61381)

This commit is contained in:
Gary Yeung
2025-07-18 04:28:58 +08:00
committed by GitHub
parent ec3ff93556
commit 858b2bcd55
2 changed files with 2 additions and 2 deletions

View File

@@ -22,7 +22,7 @@ In this lab, you will design a magazine layout using CSS Grid, including concept
4. The four `section` elements should have a `class` attribute of `feature-article`, `small-article1`, `small-article2`, and `cover-image`, respectively.
5. You should set the `display` property of `.magazine-cover` to `grid.`
5. You should set the `display` property of `.magazine-cover` to `grid`.
6. The `.magazine-cover` should have a `grid-template-areas` property that defines the layout of the grid:

View File

@@ -690,7 +690,7 @@ How can you make a grid item start at column line 2 and end at column line 4?
#### --distractors--
`grid-column: 2 / span 2;`
`grid-column: 2 / span 4;`
---