Thank you so much for taking the time to help someone on the forum today. The fact that you did it almost as soon as you joined speaks to a very helpful personality (as most people who join the forum only want help for themselves initially).
I do have to remove the code you posted though only because we want to encourage everyone to learn how to overcome coding issues themselves (with support of course like hints and tips but not complete solutions).
I look forward to your future contributions to this forum and to FCC as a whole.
Thank you for your understanding.
The question is asking you to “scale the image using it’s id as a selector”. As you can see you only need to select the id of the image, not the image included.
If you write it like
#logo img{
width: max(100px, 18vw);
}
It will select any element with id of #logo and then specifically select the img element inside the element with logo as the id.
such as:
<div id="logo">
<div>
<div>
...
<img> <!-- 👈 This img element will be selected -->
...
</div>
</div>
<img> <!-- 👈 This also, since its inside #logo -->
</div>
If its #logo_img, it will select any element that has the id of “logo_img”