jeudi 21 août 2014

[Bootstrap] Sticky footer

http://stackoverflow.com/a/25075517


 $(document).ready(function () {
//http://stackoverflow.com/a/25075517
            var $docH = $(document).height();
            // The document height will grow as the content on the page grows.
            $('.my-footer').css({
                /*
                The default height of .navbar is 50px with a 1px border,
                change this 52 if you change the height of your footer.
                */
                top: ($docH - 52) + 'px'
            });
        });



 <div id="footer" class="my-footer">
      <div class="container">
        <p class="text-muted credit">toto.com</p>
      </div>
    </div>

Aucun commentaire:

Categories