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

Co-authored-by: Shaun Hamilton <shauhami020@gmail.com>
This commit is contained in:
Kristofer Koishigawa
2021-12-20 16:28:20 +09:00
committed by GitHub
parent 28055d9d99
commit 2f1682f677

View File

@@ -24,7 +24,6 @@ In the `.blue` CSS rule, add the `box-shadow` property with the values `0` for `
Your `.blue` CSS rule should have a `box-shadow` shorthand property and with the value `0 0 0 5px blue`.
```js
console.log(new __helpers.CSSHelp(document).getStyle('.blue'));
assert(new __helpers.CSSHelp(document).getStyle('.blue')?.boxShadow === 'blue 0px 0px 0px 5px');
```