Issue with "Create Borders around your elements" Task

Tell us what’s happening:

My code so far

<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">

<style>

  .red-text {

    color: red;

  }

  h2 {

    font-family: Lobster, monospace;

  }

  p {

    font-size: 16px;

    font-family: monospace;

  }

  .smaller-image {

    width: 100px;

  }

  .thick-green-border {

    border-width: 10px;

    border-style: solid;

    border-color: green;

  }

</style>

<h2 class="red-text">CatPhotoApp</h2>

<main>

  <p class="red-text">Click here to view more <a href="#">cat photos</a>.</p>

  <a href="#"><img class="smaller-image thick-green-border"

src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>

  <div>

    <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>

  </div>

  <form action="https://freecatphotoapp.com/submit-cat-photo">

    <label><input type="radio" name="indoor-outdoor" checked> Indoor</label>

    <label><input type="radio" name="indoor-outdoor"> Outdoor</label><br>

    <label><input type="checkbox" name="personality" checked> Loving</label>

    <label><input type="checkbox" name="personality"> Lazy</label>

    <label><input type="checkbox" name="personality"> Energetic</label><br>

    <input type="text" placeholder="cat photo URL" required>

    <button type="submit">Submit</button>

  </form>

</main>

I genuinely do not see any spelling errors, the border around my cat photo is in fact GREEN, and I am extremely confused; although to be fair it is nearly 6am in the morning. Please help.

Ps. Proof I’m not hallucinating.

1 Like

Hi @aprileem !

Welcome to the forum!

When posting on the forum please include the challenge link so we know what lesson you are on and can help you.

Thanks!

1 Like

What colour do you think it should be? Your picture has this class applied, so everything is as it should be - green border.

Its now working. I don’t know why it wasn’t working last night but it seems to be now ;-;

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