Landing Page almost done (1 little problems left)

Well,i think my landing page project is almost done, im trying to figure out a way to fix that small white border at the footer(fixed thanks to sky020) and the navbar buttons that jump to the sections but the navbar covers part of when it does.

Any ideas?

Hello there.

Browsers add CSS of their own. So, it is general practice to have this as your first line of CSS:

*{
  margin: 0;
  padding:0;
}

Hope this helps

1 Like

Thanks Sky, didnt know that :sweat_smile: