Create a Set of Checkboxes (spacing)

Tell us what’s happening:
Sir or Madam,
The checkboxes are working but the spacing for the first one is off. I had the same problem with labelling and can’t sort out why the first checkbox isn’t next to the selection, but appears isolated on the line above in the displayed site. Thanks in advance for help you may be able to offer

Your code so far


<h2>CatPhotoApp</h2>
<main>
  <p>Click here to view more <a href="#">cat photos</a>.</p>
  
  <a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
  
  <p>Things cats love:</p>
  <ul>
    <li>cat nip</li>
    <li>laser pointers</li>
    <li>lasagna</li>
  </ul>
  <p>Top 3 things cats hate:</p>
  <ol>
    <li>flea treatment</li>
    <li>thunder</li>
    <li>other cats</li>
  </ol>
  <form action="/submit-cat-photo">
    <label for="indoor"><input id="indoor" type="radio" name="indoor-outdoor"> Indoor</label>
    <label for="outdoor"><input id="outdoor" type="radio" name="indoor-outdoor"> Outdoor</label><br>
    <input type="text" placeholder="cat photo URL" required>
    <button type="submit">Submit</button>
    <label for="loving"><input id="loving" type="checkbox"name="personality">Loving</label>
    <label for="playful"><input id="playful" type="checkbox"name="personality">playful</label>
    <label for="fun"><input id="fun"type="checkbox"name="personality">fun</label>
  </form>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/create-a-set-of-checkboxes

I ran your code and didn’t notice any visual problems.

It could be the size of the window you are viewing it in, but as there are no styling options for this challenge, I really wouldn’t worry about it- your code is fine and you will have plenty of projects/challenges to learn about styling/displaying content.

Hope this helps :slight_smile:

1 Like