Update curriculum/challenges/english/01-responsive-web-design/learn-css-colors-by-building-a-color-markers-set/step-014.md

Co-authored-by: Shaun Hamilton <shauhami020@gmail.com>
This commit is contained in:
Kristofer Koishigawa
2021-12-17 14:29:18 +09:00
committed by GitHub
parent 2b5018324c
commit b9ed936fab

View File

@@ -37,7 +37,7 @@ Your second new `div` element should have a closing tag.
assert([...code.matchAll(/<\/div\s*>/gi)][3]);
```
Your new `div` elements should be within the `container` `div` element.
Your new `div` elements should be within the `div.container` element.
```js
const containerChildren = [...document.querySelector('.container')?.children];