diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/step-025.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/step-025.md index fad5ffd710a..0d1f810718d 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/step-025.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/step-025.md @@ -84,7 +84,7 @@ assert.equal(new __helpers.CSSHelp(document).getStyle('.sr-only')?.whiteSpace, ' You should give the `.sr-only` a `border` of `0`. ```js -assert.equal(new __helpers.CSSHelp(document).getStyle('.sr-only')?.border, '0px'); +assert.equal(new __helpers.CSSHelp(document).getStyle('.sr-only')?.borderWidth, '0px'); ``` # --seed-- diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/step-059.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/step-059.md index 8f4572b03a3..36b296803bc 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/step-059.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/step-059.md @@ -22,7 +22,7 @@ assert.exists(new __helpers.CSSHelp(document).getStyle('.question')); You should give the `.question` a `border` of `none`. ```js -assert.equal(new __helpers.CSSHelp(document).getStyle('.question')?.border, 'none'); +assert.equal(new __helpers.CSSHelp(document).getStyle('.question')?.borderStyle, 'none'); ``` You should give the `.question` a `padding-bottom` of `0`. diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/step-061.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/step-061.md index 6b65152309e..9f21c24d6cb 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/step-061.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/step-061.md @@ -60,7 +60,7 @@ assert.equal(new __helpers.CSSHelp(document).getStyle('button')?.fontSize, '23px You should give `button` a `background` of `#d0d0d5`. ```js -assert.equal(new __helpers.CSSHelp(document).getStyle('button')?.background, 'rgb(208, 208, 213)'); +assert.equal(new __helpers.CSSHelp(document).getStyle('button')?.backgroundColor, 'rgb(208, 208, 213)'); ``` You should give `button` a `border` of `3px solid #3b3b4f`.