Welcome-section Personal Portfolio

I am setting the height property to 100vh and “the height of #welcome-section is not equal to the height of the viewport” test still will not pass. I even tried using a class selector instead:
.welcome-section {
height: 100vh;
}

Assistance greatly appreciated. Here is my Personal Portfolio pen:

You have padding: 250px; on the section. Removing it passes the tests but messes up the layout of your website. Look at how you can have your layout display the same without using padding on the section.

1 Like

Hi,
I found a solution that pass the test and respect the layout. Firstly, you have to delete the padding property and add justify-content: center on the welcome-section .

1 Like

Very big help. Thank you!

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