Personal Portfolio #10 - Help needed!

Hello!

I cannot figure out why I cannot pass User Story #10. I have spent so much time removing margins and paddings and trying to search the topic.

** The height of the welcome section should be equal to the height of the viewport.**

I have the id of the section set to “welcome-section” and the css to 100vh.

Here is a link to my code:

https://codepen.io/lindsay-b/pen/QWjrZpv?editors=1100

Any help would be appreciated!

Thank you,
Lindsay

Hello there,

The error messages are often very specific, and useful:

The height of #welcome-section is not equal to the height of the viewport : expected 639 to be close to 568 +/- 0

You have this:

#welcome-section {
 height: 100vh;
 padding-top: 10%;
 margin-right: 50vw;
}

639 is about 10% more than 568…

Hope this helps