Tribute Page 6/10

Hello everybody!

I have been working on my tribute page and according to me, I have completed all the requirements but when I run the test, it says 6/10.

Can somebody please point my error? What am I missing?

This is my work:

Thank you!!

Hi @laumonceri !

A couple of things.

No.1:
You need to remove the style tags from the css section.
Those are html tags and they should not be in your css.

No.2:
You need to check your spelling for img-div.
That will fix most of the tests.

No.3:
It looks like you have two different styles going on for the image tag.
That is probably interferring with the tests.

You wrote this.

    .main-image {
      box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
      margin-left: 5%;
      margin-top: 1%;
      margin-bottom: 0%;
      background-color: #fff;
      padding: 20px 250px 20px 250px;
      padding-with: 50vw;
      width: 50vw;
      max-width: 100%;
      height: auto;
    }
img {
  max-width: 100%;
  display: block;
  height: auto;
  margin: 0 auto;
}

Thank you very much! Now is 10/10

You are awesome!

1 Like

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