Building a quiz step 34

Tell us what’s happening:

Your code so far

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/101.0.4951.67 Safari/537.36 OPR/87.0.4390.45

Challenge: Step 34

Link to the challenge:

Hello Guys, what should i exactly do here, i have take a break from learning this and now i am continuing but i dont understand wight, where should i add additionally div tags?

you have to add them after h2 you have to give class formrow to first and third div and answer to second and fourth

          <section role="region" aria-labelledby="css-questions">
          <h2 id="css-questions">CSS</h2>
<div class="formrow"></div>
<div class="answer"></div>
<div class="formrow"></div>
<div class="answer">
</div>


        </section>

Do You mean like that here? i cant pass, with this form
the programm tell me this:

Test

Sorry, your code does not pass. Don’t give up.

Hint

You should nest four div elements inside div.formrow.

sorry my mistake, your first div should be of class formrow and nest four dives inside it, give first and third div class question-block and second and fourth answer

2 Likes

I am glad you passed it, I was really ashamed of my mistake, it’s great to see you moving forward :grinning:

no problem, we all knew this little failure that we always oversee but never mind, thank you a lot at last you helped me :slight_smile:

1 Like

Hello Guys. I am stuck with this task. I tried to nest four div, the forst and third with question-block, the second and fourt with answer but still does not work. What should I do?

Hey I have the same problem. Here is my code :

  <section role="region" aria-labelledby="css-questions">
          <h2 id="css-questions">CSS</h2>
  <div.class="formrow">
<div class="question-block">
  <div class="answer">
        <div class="question-block">
        <div class="answer"></div>
        
        </section>

Any ideas? I get the error message : Hint

You should add one div element within the final section.

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