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: