Responsible bootstrap Sticky footer height

As you resize the window, the height of the footer expands, but not the background color. Help!

http://twitter.imtqy.com/bootstrap/examples/sticky-footer.html Sticky footer bootstrap

+7
source share
2 answers

height: auto seems to solve the problem. You can enable it using a media query for small viewports:

 @media only screen and (max-device-width: 480px) { #footer { height: auto; } } 
+7
source

Your demo no longer works, but the best Bootstrap sticky footer I found is: https://gist.github.com/aalaap/3066704

+3
source

All Articles