White space between sections

How do i get rid of the white space between my welcome section and the projects section ?

2 Likes

It is the margin on the h2 inside the #projects section. Specifically the top margin.

Edit: I would urge you to learn the browser dev tools. They will show you all you need to debug pages (DOM structure, CSS, and JS).

2 Likes

you need </ul> in your nav-list

*{
  padding:0;
  margin:0;
  box-sizing:border-box;
}

this will fix your white space

2 Likes

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