Between the style tags, give the p elements font-size of 16px. Browser and Text zoom should be at 100%. would you like to help me out about this one?

Tell us what’s happening:

Your code so far


<style>
.red-text {
  color: red;
}
<p>
p { font-size: 16px; browser: 100% text room: 100% }
  </p>
</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 src="https://bit.ly/fcc-relaxing-cat" 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="/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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36 Edge/18.18362.

Challenge: Change the Font Size of an Element

Link to the challenge:

This <p> and this </p> are HTML tags. They do not go into the style elements.
You gave the p element the correct property/value pair.
When it says ‘the browser and text zoom should be at 100%’ that means if you’ve increased or decreased browser zoom it should be reset to 100% for the tests to pass.
If you haven’t changed it there’s nothing further for you to do.

As an aside, if you expand “View” in your browser’s menu bar you’ll see how to Zoom In and Zoom Out.

Please am having the same challenge and are you saying apart from the

and

the guy is correct and if I apply the method it will work??