Does anybody know how create a footer without bottom border?

Working on “Building a Project landing Page” right now. Would like to copy the standard design: https://codepen.io/freeCodeCamp/full/RKRbwL
Unfortunately i dont know a method to prevent the bottom white line under my footer.
Margin and Padding (Bottom) wont work.
Here is my code: https://codepen.io/Mr-Thrash/pen/wvpWGXX?editors=1100

There are some default margin and padding sent in. A lot of people just add:

html, body {
  margin:0;
  padding:0;
}

to their CSS.

Awesome :smiley: That works perfectly.
Thank you for the fast response

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