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;
+````