From 9b6dc9ee34ec3031244e2481f13705be2fc0a2df Mon Sep 17 00:00:00 2001 From: Darshan Vaishya <66417026+DarshanVaishya@users.noreply.github.com> Date: Fri, 7 Jan 2022 00:56:43 +0530 Subject: [PATCH] fix(curriculum): clarify instruction regarding color (#44688) * Added instruction to clarify color should be red * Added comma before "and" for punctuation Co-authored-by: Nicholas Carrigan (he/him) Co-authored-by: Nicholas Carrigan (he/him) --- .../step-090.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/step-090.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/step-090.md index 2248c7ba2b..d27ad69e00 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/step-090.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/step-090.md @@ -9,7 +9,7 @@ dashedName: step-90 Now that you're familiar with the `box-shadow` property you can finalize the shadows, starting with the one for the red marker. -In the `.red` CSS rule, update the values for the `box-shadow` property so `offsetX` is `0`,`offsetY` is `0`, `blurRadius` is `20px`, and `spreadRadius` is `0`. +In the `.red` CSS rule, update the values for the `box-shadow` property so `offsetX` is `0`,`offsetY` is `0`, `blurRadius` is `20px`, `spreadRadius` is `0`, and `color` is `red`. # --hints--