Learn Accessibility by Building a Quiz - Step 33

Tell us what’s happening:
Hello, I’m having problems with step 33, I don’t understand what it’s telling me to do.

Step 33:
If you click on the radio inputs, you might notice both inputs within the same true/false fieldset can be selected at the same time.

Group the relevant inputs together such that only one input from a pair can be selected at a time.

Link to the challenge:

Your code so far

Code:

 <ul class="answers-list">
                <li>
                  <label for="q1-a1">
                    <input type="radio" id="q1-a1" value="true" />
                    True
                  </label>
                </li>
                <li>
                  <label for="q1-a2">
                    <input type="radio" id="q1-a2" value="false" />
                    False
                  </label>
                </li>
              </ul>
            </fieldset>
          </div>
          <div class="question-block">
            <p>2</p>
            <fieldset class="question" name="html-question-two">
              <legend>
                A label element nesting an input element is required to have a
                for attribute with the same value as the input's id
              </legend>
              <ul class="answers-list">
                <li>
                  <label for="q2-a1">
                    <input type="radio" id="q2-a1" value="true" />
                    True
                  </label>
                </li>
                <li>
                  <label for="q2-a2">
                    <input type="radio" id="q2-a2" value="false" />
                    False
                  </label>
                </li>
              </ul>

Please don’t delete the link to the Step when asking a question. Its easier for us to help with that link. Thanks

Ok, I put the link back.

  • use them in “input” elements rather than on “fieldset”

happy learning :slight_smile:

Thank you so much.
All I had to do was copy the name in the fieldsets into the inputs.
I was stuck on this step a few days lol.

1 Like

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