Build a Quiz Webpage , HELP ME PLEASE

Welcome back @carlosmartins832,

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Help button located on the challenge.

The Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.

Happy coding!

Tell us what’s happening:

Build a Quiz Webpage
Instructions
index.htmlEditor
styles.cssEditor

Sameone help me please

Your code so far

<!-- file: index.html -->

/* file: styles.css */
/* User Editable Region */

* {
  scroll-behavior: smooth;
}

/* User Editable Region */

Your browser information:

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

Challenge Information:

Build a Quiz Webpage - Step 67

Welcome back to the forum @carlosmartins832

You need to nest the * selector in an @media selector.

Have a look at the example code.

Happy coding

I went ahead and combined your posts for you.

In your original post it looks like you added the correct code at the bottom of the page.

You need to modify the * selector at the top of the page.

Happy coding

@media (prefers-reduced-motion: no-preference) {

* {

scroll-behavior: smooth;

}

}

You should wrap the existing * rule within the @media rule.

If you are having troubles with the step, please post the full code for the styles.css file.

This is the starting code for that step:

Please reset this step to restore the starting code and try again. This time, only change the code where you are asked to make the change in the highlighted area. Do not move the code.

Thank you very much.

My code has now passed.