Update use-grid-area-without-creating-an-areas-template.english.md (#34852)

This commit is contained in:
The Coding Aviator
2019-02-16 20:52:20 +05:30
committed by Aditya
parent 041efd9f8a
commit 99ac0b6938

View File

@ -24,8 +24,8 @@ Using the <code>grid-area</code> property, place the element with <code>item5</c
```yml ```yml
tests: tests:
- text: <code>item5</code> class should have a <code>grid-area</code> property that has the value of <code>3/1/4/4</code>. - text: <code>item5</code> class should have a <code>grid-area</code> 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), '<code>item5</code> class should have a <code>grid-area</code> property that has the value of <code>3/1/4/4</code>.'); 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), '<code>item5</code> class should have a <code>grid-area</code> property such that it is between the third and fourth horizontal lines and between the first and fourth vertical lines.');
``` ```