My Tribute Page Oyekcin

Hi Guys,

I created Tribute Page. But I can’t go through a part.

Layout

  1. The img element should responsively resize, relative to the width of its parent element, without exceeding its original size.

I get a warning like this and I can’t figure it out. I also share the link to my project. I’d appreciate it if you helped.

Thank you.

3 Likes

Hi @oyekcin!

Here is hoy you can make an image responsive:


img {
  max-width: 100%;
  display: block;
  height: auto;
}

https://www.freecodecamp.org/learn/responsive-web-design/responsive-web-design-principles/make-an-image-responsive

1 Like