From e40909b0551c66d406d23bc0b5bd590b2f33d674 Mon Sep 17 00:00:00 2001 From: kevindelsh <44755032+kevindelsh@users.noreply.github.com> Date: Tue, 26 Feb 2019 05:38:40 +0100 Subject: [PATCH] Corrected minor spelling error (#34750) Changed "areas template" => "area's template". --- ...-items-in-grid-areas-using-the-grid-area-property.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/01-responsive-web-design/css-grid/place-items-in-grid-areas-using-the-grid-area-property.english.md b/curriculum/challenges/english/01-responsive-web-design/css-grid/place-items-in-grid-areas-using-the-grid-area-property.english.md index 8bac0c1d8a..a78f126132 100644 --- a/curriculum/challenges/english/01-responsive-web-design/css-grid/place-items-in-grid-areas-using-the-grid-area-property.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/css-grid/place-items-in-grid-areas-using-the-grid-area-property.english.md @@ -7,7 +7,7 @@ videoUrl: 'https://scrimba.com/p/pByETK/cRrqmtV' ## Description
-After creating an areas template for your grid container, as shown in the previous challenge, you can place an item in your custom area by referencing the name you gave it. To do this, you use the grid-area property on an item like this: +After creating an area's template for your grid container, as shown in the previous challenge, you can place an item in your custom area by referencing the name you gave it. To do this, you use the grid-area property on an item like this:
.item1 { grid-area: header; }
This lets the grid know that you want the item1 class to go in the area named header. In this case, the item will use the entire top row because that whole row is named as the header area.