Personal Portfolio Challenge: Height of the welcome-section needs to be full-height

I cannot figure out why my portfolio page is failing the check full-height check. I’m using the following to get the height full-screen.

#welcome-section{
    min-height: 100vh;
}

It looks correct on the page, but the check says no. My error: “The height of the welcome section should be equal to the height of the viewport.”

https://codepen.io/alliwalk/pen/BeEKmq?editors=1100

Hi @nycoder_aw.

I had the same problem and was unable to fix it. FCC Tests are very bugged sometimes so I decided to ignore it because I knew my project was working as intended, maybe you could do the same :confused:

1 Like

I was having other issues with this project, too, so I guess that’s the case. Thanks

1 Like

Add height attribute inside of meta
<meta name="viewport" content="width=device-width, initial-scale=1.0" height="height=100vh;" />
and may be change in welcome-section min-height: 100vh to height: 100vh or height: 100%