From 10562ae5e640068027a63b3d3be1f1aff3b1a51b Mon Sep 17 00:00:00 2001 From: Scott Tran Date: Wed, 31 Oct 2018 12:09:22 -0500 Subject: [PATCH] Added Hint/Solution to "Area Template" Challenge (#20575) --- .../index.md | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/guide/english/certifications/responsive-web-design/css-grid/divide-the-grid-into-an-area-template/index.md b/guide/english/certifications/responsive-web-design/css-grid/divide-the-grid-into-an-area-template/index.md index 2646984c18..a6af333257 100644 --- a/guide/english/certifications/responsive-web-design/css-grid/divide-the-grid-into-an-area-template/index.md +++ b/guide/english/certifications/responsive-web-design/css-grid/divide-the-grid-into-an-area-template/index.md @@ -3,8 +3,19 @@ title: Divide the Grid Into an Area Template --- ## Divide the Grid Into an Area Template -This is a stub. Help our community expand it. +In this challenge you are required to use the "grid-template-areas" property to group cells of a grid together into areas and give the areas a custom name. -This quick style guide will help ensure your pull request gets accepted. +### Hint - +A period (`.`) designates an empty cell in a grid. + +### Solution + +Since the challenge requires you to make the cell labeled `advert` into an empty cell, change `advert` to a `.` (period) so that the code reflects the following: + +````css +grid-template-areas: + "header header header" + ". content content" + "footer footer footer"; +````