Learn Accessibility by Building a Quiz - Step 67

Tell us what’s happening:
I am stuck at this step and cannot find the solution, and I am upset since it wasn’t taught or explained, but is required for me to know what to do. I know this will be a common problem I wanna code.
Your code so far

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

Your browser information:

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

Challenge: Learn Accessibility by Building a Quiz - Step 67

Link to the challenge:

I do not know how to to this

Here is the example syntax

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

feature: value should be replaced with prefers-reduced-motion: no-preference

And this

selector {
  styles
}

Should be replaced with the selector in the starting code.

* {
  scroll-behavior: smooth;
}
1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.