From 99ac0b6938077b23202556b3dce9edbb1d6e170e Mon Sep 17 00:00:00 2001 From: The Coding Aviator <34807532+thecodingaviator@users.noreply.github.com> Date: Sat, 16 Feb 2019 20:52:20 +0530 Subject: [PATCH] Update use-grid-area-without-creating-an-areas-template.english.md (#34852) --- ...se-grid-area-without-creating-an-areas-template.english.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/01-responsive-web-design/css-grid/use-grid-area-without-creating-an-areas-template.english.md b/curriculum/challenges/english/01-responsive-web-design/css-grid/use-grid-area-without-creating-an-areas-template.english.md index 9bdfa688fa..6217f10de9 100644 --- a/curriculum/challenges/english/01-responsive-web-design/css-grid/use-grid-area-without-creating-an-areas-template.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/css-grid/use-grid-area-without-creating-an-areas-template.english.md @@ -24,8 +24,8 @@ Using the grid-area property, place the element with item5item5 class should have a grid-area property that has the value of 3/1/4/4. - testString: assert(code.match(/.item5\s*?{[\s\S]*grid-area\s*?:\s*?3\s*?\/\s*?1\s*?\/\s*?4\s*?\/\s*?4\s*?;[\s\S]*}/gi), 'item5 class should have a grid-area property that has the value of 3/1/4/4.'); + - text: item5 class should have a grid-area property such that it is between the third and fourth horizontal lines and between the first and fourth vertical lines. + testString: assert(code.match(/.item5\s*?{[\s\S]*grid-area\s*?:\s*?3\s*?\/\s*?1\s*?\/\s*?4\s*?\/\s*?4\s*?;[\s\S]*}/gi), 'item5 class should have a grid-area property such that it is between the third and fourth horizontal lines and between the first and fourth vertical lines.'); ```