Learn Accessibility by Building a Quiz - Step 50

Tell us what’s happening: Can’t continue further practice

Your code so far
nav > ul {
display: flex;
justify-content: space-evenly;

}

ul{
flex-wrap: wrap;
}
Error: Sorry, your code does not pass. You’re getting there. - ul a flex-wrap of wrap . It is already there :nerd_face: :face_with_monocle: :face_with_diagonal_mouth: :worried:
WARNING

The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.

You will need to take an additional step here so the code you wrote presents in an easy to read format.

Please copy/paste all the editor code showing in the challenge from where you just linked.

Replace these two sentences with your copied code.
Please leave the ``` line above and the ``` line below,
because they allow your code to properly format in the post.

Your browser information:

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

Challenge: Learn Accessibility by Building a Quiz - Step 50

Link to the challenge:

We need to see all your code because the directions ask for

Fix this by using Flexbox to wrap the ul content. Then, set the following CSS properties to correctly align the text:

align-items: center;
padding-inline-start: 0;
margin-block: 0;
height: 100%;

I dont see any of this in the code you provided

Hello, thank you for reply. The problem is that i have made first step - maded the wrap by using ul {flex-wrap: wrap;}, unfortunately, the platform doesn’t see that and shows the notification with offer to add ul {flex-wrap: wrap;}. I also have added {align-items: center; padding-inline-start: 0; margin-block: 0; height: 100%;} and nothing happened with the result, the notification with offer to add ul {flex-wrap: wrap;} is still there.

We need to see that code

When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

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

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