Need help with Boostrap #87 - Responsive Style Radio Buttons - I don't understand why my coding isn't passing

I don’t understand why it doesn’t work …

 <div class="row">
      <div class="col-xs-6">
          <li>cat nip</li>
      </div>
      
      <div class="col-xs-6">
        <li>laser pointers</li>
      </div>
      
      <div class="col-xs-6">
        <li>lasagna</li>
      </div>  
    </div>
  </ul> 
  <p>Top 3 things cats hate:</p>`  <div class="row">
      <div class="col-xs-6">
          <li>cat nip</li>
      </div>
      
      <div class="col-xs-6">
        <li>laser pointers</li>
      </div>
      
      <div class="col-xs-6">
        <li>lasagna</li>
      </div>  
    </div>
  </ul> 

What you should wrap in <div>s are not the list items, but the two radio buttons, those <input>s with type="radio".

1 Like

What an idiot !!!
My only excuse is I was tired and it was late.
Thank you