Answers for "footer bottom css"

2

push footer to bottom

.flex-wrapper {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: space-between
}
Posted by: Guest on August-13-2020
0

footer bottom

<script>
    $(document).ready(function() {
        setInterval(function() {
            var docHeight = $(window).height();
            var footerHeight = $('#footer').height();
            var footerTop = $('#footer').position().top + footerHeight;
            var marginTop = (docHeight - footerTop + 10);

            if (footerTop < docHeight)
                $('#footer').css('margin-top', marginTop + 'px'); // padding of 30 on footer
            else
                $('#footer').css('margin-top', '0px');
            // console.log("docheight: " + docHeight + "n" + "footerheight: " + footerHeight + "n" + "footertop: " + footerTop + "n" + "new docheight: " + $(window).height() + "n" + "margintop: " + marginTop);
        }, 250);
    });
</script>
Posted by: Guest on October-14-2021

Browse Popular Code Answers by Language