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?
Asked
Active
Viewed 121 times
0
-
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 Answers
1
use beloved css part
#footer{
width: 100%;
position: fixed;
bottom: 0px;
}

ashanrupasinghe
- 758
- 1
- 10
- 22
-
I doesn't work good : my content is hidden by the footer now if I don't have zoom – Topheur Feb 19 '17 at 18:37
-
I think you have to check your html layout, check this http://stackoverflow.com/questions/18739937/how-to-keep-footer-at-bottom-of-screen – ashanrupasinghe Feb 19 '17 at 18:39