Need Help on Responsive Web Design Principles: Make an Image Responsive

Tell us what’s happening:
I typed the below for the responsive-img class but when I run the test, I receive the below. Not sure if I am missing something or there is just a system error, please help.

// running tests Your responsive-img class should have a max-width set to 100% .

Your code so far


<style>
.responsive-img {
max-width: 100%;
display: block;
height: auto;
}

img {
width: 600px;
}
</style>

<img class="responsive-img" src="https://s3.amazonaws.com/freecodecamp/FCCStickerPack.jpg" alt="freeCodeCamp stickers set">
<img src="https://s3.amazonaws.com/freecodecamp/FCCStickerPack.jpg" alt="freeCodeCamp stickers set">

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

Challenge: Make an Image Responsive

Link to the challenge:

You don’t need a display: block on your .responsive-img element

I did it without the display: block as well and received the same response as above.

Try it with a different browser like Chrome. Or try updating to something like Chromium Edge.