From 2e7c6e32fe0492873c2d065d08c71323fad75c65 Mon Sep 17 00:00:00 2001 From: Scott Tran Date: Tue, 30 Oct 2018 21:58:17 -0500 Subject: [PATCH] Added Hint/Solution for "grid-gap" Challenge (#20465) --- .../add-gaps-faster-with-grid-gap/index.md | 20 ++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/guide/english/certifications/responsive-web-design/css-grid/add-gaps-faster-with-grid-gap/index.md b/guide/english/certifications/responsive-web-design/css-grid/add-gaps-faster-with-grid-gap/index.md index 5ca00ef045..9ae198afa0 100644 --- a/guide/english/certifications/responsive-web-design/css-grid/add-gaps-faster-with-grid-gap/index.md +++ b/guide/english/certifications/responsive-web-design/css-grid/add-gaps-faster-with-grid-gap/index.md @@ -3,8 +3,22 @@ title: Add Gaps Faster with grid-gap --- ## Add Gaps Faster with grid-gap -This is a stub. Help our community expand it. +In this challenge you are required to use "grid-gap" to define a row gap and a column gap. -This quick style guide will help ensure your pull request gets accepted. +### Hint - +You can define the gap for the row and column by declaring the following in the .container CSS codeblock: + +````css +grid-gap: 'row-gap' 'column-gap'; +```` + +and inserting the desired parameters for 'row-gap' and 'column-gap'. + +### Solution + +Since the challenge requires you to create a 10px gap between the rows and a 20px gap between the columns, add the following code to the .container CSS codeblock: + +````css +grid-gap: 10px 20px; +````