-1

I have this white space below the footer, it is in the html and i cant understand how to remove it, i have on my css

html {
   margin:0
   padding:0
}

The button has a div, maybe if I extend it i could remove the blank space> How could I do that maybe?

norok2
  • 25,683
  • 4
  • 73
  • 99
janispanis
  • 11
  • 3
  • Your content isnt big enough to fill the content. You might want to set your min height of the bpdy/html to 100% of the viewport – Martijn Jul 19 '19 at 09:40

1 Answers1

0

Select Everything(*) and do not forget to close your code with semi colon (;).

   *{
    margin:0;
    padding:0;
    }
Yang
  • 14
  • 5