I need help to figure out why this is not working

Tell us what’s happening:
I have been trying to complete this for the past while but everything I do says that the max-width is not set to 100% but it is.

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:

Looks like you’re missing the “.”
Should be “.responsive-img” because it’s a class.

I did that and it still didn’t work

Try using the “Reset All Code” button and try again.