Learn Accessibility by Building a Quiz - Step 67

Tell us what’s happening:
need help here: You should wrap the existing * rule within the @media rule.
Your code so far

WARNING

The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.

You will need to take an additional step here so the code you wrote presents in an easy to read format.

Please copy/paste all the editor code showing in the challenge from where you just linked.

Replace these two sentences with your copied code.
Please leave the ``` line above and the ``` line below,
because they allow your code to properly format in the post.

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36

Challenge: Learn Accessibility by Building a Quiz - Step 67

Link to the challenge:

* {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: no-preference){
  selector {styles}
}

This selector should be inside the @media at-rule.

* {
  scroll-behavior: smooth;
}

The @media at-rule example is pseudo-code.

@media (feature: value) {
  selector {
    styles
  }
}

This part refers to the selector, in this case, the initial selector that is in the starting code is what you will use.

selector {
 styles
}
1 Like

Thank you so much, it has worked out.