Step 66-building a quiz: I can't find the error

Tell us what’s happening:
says:
Wrap the style rule that sets scroll-behavior: smooth within an @media at-rule with the media feature prefers-reduced-motion having no-preference set as the value.

first, i have this:

* {
    scroll-behavior: smooth;
  }
 
and... i do this:

@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/102.0.0.0 Safari/537.36

Challenge: Step 66

Link to the challenge:

Just remove the first part keep only what you have after and… i do this:
just solved this myself. I had trouble with it as well.

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