It’s so close to finished, I just need to get past " 1. The <img> element should responsively resize, relative to the width of its parent element, without exceeding its original size."
I tried adding max-width to the CSS, but it didn’t work. I looked at this page and my old one side-by-side, and it still didn’t work.
# indicates an id attribute. You don’t have an element with id=‘img’ so that second style will not match any elements.
You do have an img element with id=“image” though
The first style does successfully match your image, but you still have an error that is failing the same user story.
Look closely at your display property. Is that a valid value for display?
This is the error message from the failed assertion test
Use the “display” style property with a value of “block” forresponsive images.: expected ‘inline’ to equal ‘block’
AssertionError: Use the “display” style property with a value of “block” forresponsive images.: expected ‘inline’ to equal ‘block’