From 200a376382b8ab49b0fa2baafce8bc5f65410cf4 Mon Sep 17 00:00:00 2001 From: Scott Tran Date: Fri, 26 Oct 2018 14:06:47 -0500 Subject: [PATCH] Fixed Typo (#20473) --- .../css-grid/add-columns-with-grid-template-columns/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/certifications/responsive-web-design/css-grid/add-columns-with-grid-template-columns/index.md b/guide/english/certifications/responsive-web-design/css-grid/add-columns-with-grid-template-columns/index.md index 7d7b5962094..923455d59d7 100644 --- a/guide/english/certifications/responsive-web-design/css-grid/add-columns-with-grid-template-columns/index.md +++ b/guide/english/certifications/responsive-web-design/css-grid/add-columns-with-grid-template-columns/index.md @@ -17,7 +17,7 @@ where parameters is whatever you want it to be. ### Solution -Since the challenge requires you to create three columns of 100px each, declare the followin in your .container CSS codeblock: +Since the challenge requires you to create three columns of 100px each, declare the following in your .container CSS codeblock: ````css grid-template-columns: 100px 100px 100px;