FCC test showing error when there isnt any

I am working on Portfolio page project for FreeCodeCamp link - https://codepen.io/strawhatDesigner/pen/eYEZmWM
I can’t seem to pass one of the requirements even though I should. Can someone help me with this ?

The page itself has height equal to the viewport

1
body,html{
2
  padding: 0;
3
    margin: 0;
4
    position: relative;
5
    height: 100vh;
6
    overflow-x: hidden;font-family: 'Quicksand', sans-serif;
7
    font-weight: 500;
8
}

The tests can’t detect it moving because it isn’t, the content is scrolling

1 Like

I feel so stupid. That one css line was keeping me from completing the course and earning my certificate. Thank you very much.

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