Trouble Passing User Story 10 on Portfolio

I’ve passed every other test for the portfolio page but am stuck on User Story 10. Could anyone point me in the right direction for passing this test?

FCC Portfolio Page

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36.

Challenge: Build a Personal Portfolio Webpage

Link to the challenge:

1 Like

Hey! Welcome and glad you have already figured out almost all the tests.
To make that one test pass you have to keep in mind that you can use CSS to make any element (including your section) to be the same height as the viewport.

Just like how we have sizing units for px, rem and em in CSS; there is a sizing unit called vw for the width of the viewport and vh for the height. For example if you set a heigh of an element to 10vh, CSS would resize that element’s height to be 10% of viewport.

I hope this is enough of a hint but if it wasn’t make a comment below and we should be able to figure it out!

Good luck!

2 Likes

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