diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/step-049.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/step-049.md index 2b077238aa..9f91b060b0 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/step-049.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/step-049.md @@ -20,7 +20,7 @@ In the `.red` CSS rule, change the `background-color` property to `background`. Your `.red` CSS rule should have a `background` property with the value `rgb(255, 0, 0)`. ```js -assert(new __helpers.CSSHelp(document).getStyle('.red').cssText === 'background: rgb(255, 0, 0);'); +assert.include(new __helpers.CSSHelp(document).getStyle('.red').cssText, 'background: rgb(255, 0, 0)'); ``` # --seed-- diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/step-060.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/step-060.md index 1a9ccaa712..2e23fa143a 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/step-060.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/step-060.md @@ -16,7 +16,7 @@ In the `.green` CSS rule, change the `background-color` property to `background` Your `.green` CSS rule should have a `background` property with the value `#007F00`. ```js -assert(new __helpers.CSSHelp(document).getStyle('.green').cssText === 'background: rgb(0, 127, 0);'); +assert.include(new __helpers.CSSHelp(document).getStyle('.green').cssText, 'background: rgb(0, 127, 0)'); ``` # --seed-- diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/step-066.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/step-066.md index 8ee2379af9..5801d2f258 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/step-066.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/step-066.md @@ -16,7 +16,7 @@ In the `.blue` CSS rule, change the `background-color` property to `background`. Your `.blue` CSS rule should have a `background` property with the value `hsl(240, 100%, 50%)`. ```js -assert(new __helpers.CSSHelp(document).getStyle('.blue').cssText === 'background: rgb(0, 0, 255);'); +assert.include(new __helpers.CSSHelp(document).getStyle('.blue').cssText, 'background: rgb(0, 0, 255)'); ``` # --seed-- diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-typography-by-building-a-nutrition-label/step-028.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-typography-by-building-a-nutrition-label/step-028.md index 45e2161f72..86fe43af33 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-typography-by-building-a-nutrition-label/step-028.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-typography-by-building-a-nutrition-label/step-028.md @@ -14,7 +14,7 @@ You may notice there is still a small border at the bottom of your `.lg` element Your `.lg, .md` selector should have a `border` property set to `0`. ```js -assert(new __helpers.CSSHelp(document).getStyle('.lg, .md')?.border === '0px'); +assert(new __helpers.CSSHelp(document).getStyle('.lg, .md')?.borderWidth === '0px'); ``` # --seed--