css - How do I create a non-sticky footer in Bootstrap? -


how produce footer spans whole width of screen (despite screen resolution) , stays @ bottom of page?

when search people providing code sticky footers (footers hoover page), , saying use absolute positioning (which hear no no).

a perfect example of mean 1 of sites twitter bootstrap cites example (https://www.gathercontent.com/). on site footer (which looks hero unit or something) on bottom of page.

use jquery:

$(window).load(function () {     $('.footer').width($(window).width());     $(window).resize(function () {         $('.footer').width($(window).width());     }); }); 

make sure have js file though


Comments