Designing a tribute page

hello family, i have still have problems with number 8 and number 9. i need your help please.

HI @pianistdannie6 !

Please provide a link to your codepen and the tell use what the errors messages are saying.

Thanks!

It’s still insisting that I should responsively resize my element, relative to the width of its parent element, without exceeding it’s original size.
And then the element should be centered within its parent element.

For the first failing test, you need to read the FULL error message.

Right now you are only reading the first sentence of the error message.
Open up the test suite and it will tell you what is missing from your code here

#image {
  max-width: 100%;
    height: auto;
}

Once you fix that, then it will show 9/10.

Then you will need to google “how to center an image css”
The first result will give you the exact code to pass the test.

A big part of these projects is learning how to read the errors messages and research on google for answers.

When I fix those things, everything passes.
Hope that helps!

Please help me to interpret this…Use the “display” style property with a value of “block” for responsive images

Display is the CSS property name and it wants you to assign the value of block to it.

display:block;

Hope that makes sense!

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.