Problems with the height of the welcome section in my portfolio

Hi. I have problems with my Portfolio. It has just one issue. “The height of the welcome section should be equal to the height of the viewport”. I added the code “height:100vh;” to the “#welcome-section” in the CSS file, and it apparently works but the text says it’s not OK. What can I do? Thanks in advance.

The link is : “https://codepen.io/amapola-negra/pen/oNWRdBw

Regards :slight_smile:

  1. You have inline styles on the element that you need to remove style="height:100%"

  2. Set box-sizing: border-box on all elements using a universal selector. Elements will not inherit the box-sizing you have set on the body selector.

* {
  box-sizing: border-box;
}

OK. Thanks. It works!!! :smiley:

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