(New) Responsive Web Design - (for) atrribute issue

Back again with yet another road block, I’m having trouble passing by creating the (for) attribute for this particular fieldset, Im on step 55 of the first lesson

          <fieldset>
            <legend>What's your cat's personality?</legend>
            <label for="loving">Loving</label>
            <input id="Loving" type="checkbox"> Loving
          </fieldset>

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.61 Safari/537.36

Challenge: Step 55

Link to the challenge:

First of all, your id is “Loving” and your for is “loving” - those are not the same thing to HTML, it doesn’t care about “close”.

Next, the instructions say:

… nesting the text Loving in a label element and place it to the right side of the checkbox input element.

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