0

I'm working on the website http://pcagrade.fr/8-certification-cartes-pokemon.html and I have a CSS issue: when I zoom out with my desktop browser, my footer don't follow the bottom of my browser and then I have a big blank space under (comes from my body tag). How I can solve this problem?

Donald Duck
  • 8,409
  • 22
  • 75
  • 99
Topheur
  • 25
  • 7
  • You can find this solution by searching for "sticky footer" or "fixed footer" either here on SO or on Google. – JakeParis Feb 18 '17 at 17:55

1 Answers1

1

use beloved css part

#footer{
width: 100%;
position: fixed;
bottom: 0px;
}
ashanrupasinghe
  • 758
  • 1
  • 10
  • 22