Como elimino el style

Tell us what’s happening:
Describe your issue in detail here.

  **Your code so far**

<style>
p h2 {color: blue;}
</style>
<h2 style="color: blue;">CatPhotoApp<
<main>
<p>Click here to view more <a href="#">cat photos</a>.</p>

<a href="#"><img 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>
  **Your browser information:**

User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36

Challenge: Use CSS Selectors to Style Elements

Link to the challenge:

You have a couple of issues here.

First. this line:

<h2 style="color: blue;">CatPhotoApp<

That style attribute and value? (style="color: blue;") You’re supposed to get rid of that.

Also, the closing tag is broken. For example, an h1 closing tag would look like </h1>. But you need a closing tag for an h2.

Next, this line:

p h2 {color: blue;}

You have two selectors there, p and h2. There is only a space between them. That is telling CSS, “I want you to target any h2 that is a descendent of a p.” But we want to target all p and all h2 (even if the h2 is not contained in a p.) For that, we separate with a comma, not a space. You can read about CSS combinators here.

When I fix those things, your code passes for me.

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