diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145ed1f22caab087630aaad.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145ed1f22caab087630aaad.md index 76a90a939ed..e04019627cf 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145ed1f22caab087630aaad.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/6145ed1f22caab087630aaad.md @@ -7,7 +7,7 @@ dashedName: step-33 # --description-- -To prevent unnecessary repetition, target the `before` pseudo-element of the `p` element, and give it a `content` property of `Question #`. +To prevent unnecessary repetition, target the `before` pseudo-element of the `p` element, and give it a `content` property of `"Question #"`. # --hints-- @@ -17,7 +17,7 @@ You should use the `p::before` selector. assert.exists(new __helpers.CSSHelp(document).getStyle('p::before')); ``` -You should give the `p::before` pseudo-element a `content` property of `Question #`. +You should give the `p::before` pseudo-element a `content` property of `"Question #"`. ```js assert.include(new __helpers.CSSHelp(document).getStyle('p::before')?.content, 'Question #');