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

Co-authored-by: Shaun Hamilton <shauhami020@gmail.com>
This commit is contained in:
Kristofer Koishigawa
2021-12-20 16:25:50 +09:00
committed by GitHub
parent b8653e8259
commit a9fe8a7e8d

View File

@@ -29,7 +29,7 @@ You should nest your new `div` element within the `div` with the class `containe
assert(document.querySelector('.container')?.children[0]?.localName === 'div');
```
You should give your new `div` element a class of `container`.
You should give your new `div` element a class of `marker`.
```js
const containerChildren = [...document.querySelector('.container')?.children];