I need to keep a footer on bottom, but its height is variable so main solutions are not suitable for me…
Examples of what I can’t do:
Anyone have a solution for flexible footers?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
2014 UPDATE: The modern way to solve this layout problem is to use the
flexboxCSS model. It’s supported by all major browsers and IE11+.Here’s a solution for sticky footer of flexible height using
divs withdisplay: table-row:What needs to be noted is that CSS was designed to layout documents, not web application screens. The CSS display: table properties are very valid though, and are supported in all major browsers. This is not the same as using structural tables for layout.