Resizing pixel width to 100

I can’t figure out how to resize the pixel width.

  **Your 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;
}
</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  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="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 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1.2 Safari/605.1.15.

Challenge: Size Your Images

Link to the challenge:

Hi @Ray90 !

Classes need quotes around them

Add quotes here

This is the correct way to write classes

Here is the FCC example:

<style>
  .larger-image {
    width: 500px;
  }
</style>

Just change the class name and width size and the test will pass.

Hi Jwilins !

Thanks so much for responding. I have this <a href="#"><img class= "smaller-image" {width:100px;} but it’s still saying my image should be 100px.

Thank you !


<img class="smaller-image"  src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>

   

Looks good
However one needs to fix the css. Try targeting the html element inside the
css

<style>
.smaller-image{
width:100px;
}

</style>

It would help to see your full code.

When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

I appreciate all of your help !

Thank you so much ! Got passed it :slight_smile:

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