fix(curriculum): grid area template lesson (#43059)

* fix(curriculum): grid area template lesson

* fix: remove next step mention and fix hint

* fix: rework to make solution line up with seed of next lesson

* Update curriculum/challenges/english/01-responsive-web-design/css-grid/divide-the-grid-into-an-area-template.md

Co-authored-by: Shaun Hamilton <shauhami020@gmail.com>

* Update curriculum/challenges/english/01-responsive-web-design/css-grid/divide-the-grid-into-an-area-template.md

Co-authored-by: Shaun Hamilton <shauhami020@gmail.com>

Co-authored-by: Shaun Hamilton <shauhami020@gmail.com>
This commit is contained in:
Tom
2021-08-05 23:52:00 -05:00
committed by GitHub
parent 097565c615
commit 8b2a4cbab9

View File

@ -15,25 +15,25 @@ You can group cells of your grid together into an <dfn>area</dfn> and give the a
grid-template-areas: grid-template-areas:
"header header header" "header header header"
"advert content content" "advert content content"
"footer footer footer"; "advert footer footer";
``` ```
The code above merges the top three cells together into an area named `header`, the bottom three cells into a `footer` area, and it makes two areas in the middle row; `advert` and `content`. **Note:** Every word in the code represents a cell and every pair of quotation marks represent a row. In addition to custom labels, you can use a period (`.`) to designate an empty cell in the grid. The code above groups the cells of the grid into four areas; `header`, `advert`, `content`, and `footer`. Every word represents a cell and every pair of quotation marks represent a row.
# --instructions-- # --instructions--
Place the area template so that the cell labeled `advert` becomes an empty cell. Change the template so the `footer` area spans the entire bottom row. Defining the areas won't have any visual effect right now. Later, you will make an item use an area to see how it works.
# --hints-- # --hints--
`container` class should have a `grid-template-areas` property similar to the preview but with`.` instead of the `advert` area. `container` class should have a `grid-template-areas` property similar to the example but with the `footer` area spanning the whole bottom row.
```js ```js
assert( assert(
__helpers __helpers
.removeCssComments(code) .removeCssComments(code)
.match( .match(
/.container\s*?{[\s\S]*grid-template-areas\s*?:\s*?"\s*?header\s*?header\s*?header\s*?"\s*?"\s*?.\s*?content\s*?content\s*?"\s*?"\s*?footer\s*?footer\s*?footer\s*?"\s*?;[\s\S]*}/gi /.container\s*?{[\s\S]*grid-template-areas\s*?:\s*?"\s*?header\s*?header\s*?header\s*?"\s*?"\s*?advert\s*?content\s*?content\s*?"\s*?"\s*?footer\s*?footer\s*?footer\s*?"\s*?;[\s\S]*}/gi
) )
); );
``` ```
@ -63,7 +63,7 @@ assert(
/* Only change code below this line */ /* Only change code below this line */
"header header header" "header header header"
"advert content content" "advert content content"
"footer footer footer"; "advert footer footer";
/* Only change code above this line */ /* Only change code above this line */
} }
</style> </style>
@ -99,7 +99,7 @@ assert(
grid-template-areas: grid-template-areas:
"header header header" "header header header"
". content content" "advert content content"
"footer footer footer"; "footer footer footer";
} }
</style> </style>