7
I’ve been following similar issues here on stackoverflow and other web sites, in addition to tutorials on the internet, but the vast majority of solutions do not work as I need, or even are incompatible with the bootstrap system.
I look for a way to "stick" the footer at the bottom of the page, with variable height (changes according to the viewport and the internal grid layout), responsive and with support for the current bootstrap (3.4.4). Includes pure javascript and/or jquery.
That’s possible?
Possible is,
position:absolute; bottom:0
. Have you tried anything? If so, edit the question includes the code.– Renan Gomes
Have any of the solutions solved the problem? if yes validate a.
– Ricardo
@I had some problems with your solution: Using only these 2 properties gives me a footer that is at the bottom of the screen, but when changing the resolution is as in the Jsfiddle.
– Vico
I ran some more tests on Fiddle, and I realized that I have a two-pronged knife now. This snippet is just what I want, BUT now the problem is with the attribute "position". When there is little content, using "Absolute" works like I want it to (it’s like I want it in fiddle). However when there’s so much content (When it exceeds the height of the window), Absolute causes the content to "go behind" the footer and it remains fixed at the bottom of the screen (not the entire page). If I change position values, it doesn’t work.
– Vico