Skip to content

Instantly share code, notes, and snippets.

@popdemtech
Last active August 8, 2022 20:54
Show Gist options
  • Select an option

  • Save popdemtech/a30ac88b1ffed03d348686a9bc5b54fd to your computer and use it in GitHub Desktop.

Select an option

Save popdemtech/a30ac88b1ffed03d348686a9bc5b54fd to your computer and use it in GitHub Desktop.
Fix footer to bottom page if it is a short page
fixPageShort();
function fixPageShort() {
if(window.innerHeight > document.body.offsetHeight) {
document.getElementById("footer").style.position="fixed";
document.getElementById("footer").style.bottom=0;
document.getElementById("footer").style.right=0;
document.getElementById("footer").style.left=0;
document.getElementById("footer").style.width="100%";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment