You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If content is shorter than window height, footer should be at bottom of window. Otherwise it should be bottom of content. Couldn't figure out how to do this in CSS. Is it possible? If not, we can do it w/ JS.
The text was updated successfully, but these errors were encountered:
I'm not near a computer but you can do this with css by setting the body's min-height to be 100% of the screen and the footer absolutely positioned at the bottom of the screen. And make sure the body's width is defined at 100% and the position is relative or absolute. Hope this helps!!
-Rennie
Our CSS is a bit complex due to the polymer menu/drawer for small screens
making body positioned makes #full-width disappear on small screen
adding width: 100% to #full-width makes it unscrollable
If content is shorter than window height, footer should be at bottom of window. Otherwise it should be bottom of content. Couldn't figure out how to do this in CSS. Is it possible? If not, we can do it w/ JS.
The text was updated successfully, but these errors were encountered: