Learn Accessibility by Building a Quiz - Step 50

Tell us what’s happening: I’m inputting the flex-wrap as instructed but the site is not accepting that I’ve input it correctly. I’ve checked it over and over.

Your code so far

nav > ul {
display: flex;
justify-content: space-evenly;

}

ul {
display: flex;
flex-wrap: wrap;
align-items: center;
padding-inline-start: 0;
margin-block: 0;
height: 100%;
}


**Your browser information:**

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

**Challenge:** Learn Accessibility by Building a Quiz - Step 50

**Link to the challenge:**
https://www.freecodecamp.org/learn/2022/responsive-web-design/learn-accessibility-by-building-a-quiz/step-50
1 Like

I can see that the instructions might be a little misleading. They want you to put all of these properties inside the existing rule set for nav > ul.

3 Likes

Thank you very much! That was probably the one thing I had not tried.

3 Likes

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