From db63a354ee25ce2abb2c80ddaf69bc38f8051562 Mon Sep 17 00:00:00 2001 From: Leo <45669613+Hahlh@users.noreply.github.com> Date: Sat, 16 Feb 2019 18:50:46 +0200 Subject: [PATCH] Deleted comma and removed first person (#35034) --- .../reduce-repetition-using-the-repeat-function.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/01-responsive-web-design/css-grid/reduce-repetition-using-the-repeat-function.english.md b/curriculum/challenges/english/01-responsive-web-design/css-grid/reduce-repetition-using-the-repeat-function.english.md index e29cfe680c..f67860c917 100644 --- a/curriculum/challenges/english/01-responsive-web-design/css-grid/reduce-repetition-using-the-repeat-function.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/css-grid/reduce-repetition-using-the-repeat-function.english.md @@ -11,7 +11,7 @@ When you used grid-template-columns and grid-template-rowsrepeat function to specify the number of times you want your column or row to be repeated, followed by a comma and the value you want to repeat. Here's an example that would create the 100 row grid, each row at 50px tall.
grid-template-rows: repeat(100, 50px);
-You can also repeat multiple values with the repeat function, and insert the function amongst other values when defining a grid structure. Here's what I mean: +You can also repeat multiple values with the repeat function and insert the function amongst other values when defining a grid structure. Here's what that looks like:
grid-template-columns: repeat(2, 1fr 50px) 20px;
This translates to:
grid-template-columns: 1fr 50px 1fr 50px 20px;