Learn Accessibility by Building a Quiz - Step 26

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36

Challenge: Learn Accessibility by Building a Quiz - Step 26

Link to the challenge:

[/quote]

You are missing the class attribute here
And you need another fieldset element in the other div too

1 Like

so i have to put the class="question-block" into the fieldset right?

no question-block is not the correct class-name for the fieldset element.

in the instructions they said:

, and one fieldset element with a class of question .

1 Like

thanks i just did what you said but without the -block and it worked #support

1 Like
<div class="question-block">
            <p>1</p>
            <fieldset class="question"></fieldset>
          </div>
          <div class="question-block">
            <p>2</p>
            <fieldset class="question"></fieldset>
          </div>

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