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.'); ```