From b499ea880ac968f24eafcf6501de195d651d7109 Mon Sep 17 00:00:00 2001 From: jenshaw86 <43564151+jenshaw86@users.noreply.github.com> Date: Wed, 16 Jan 2019 07:27:11 +0800 Subject: [PATCH] Corrected spelling in 'following' (#32360) --- .../css-grid/add-rows-with-grid-template-rows/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/certifications/responsive-web-design/css-grid/add-rows-with-grid-template-rows/index.md b/guide/english/certifications/responsive-web-design/css-grid/add-rows-with-grid-template-rows/index.md index 2aa55d8423..718ac10bab 100644 --- a/guide/english/certifications/responsive-web-design/css-grid/add-rows-with-grid-template-rows/index.md +++ b/guide/english/certifications/responsive-web-design/css-grid/add-rows-with-grid-template-rows/index.md @@ -11,7 +11,7 @@ You can define rows by using the `grid-template-rows` CSS property. ### Solution -Since the challenge requires you to create two rows of `50px` each, declare the followin in your `.container` CSS code block: +Since the challenge requires you to create two rows of `50px` each, declare the following in your `.container` CSS code block: ````css grid-template-rows: 50px 50px;