Skip to content

Instantly share code, notes, and snippets.

@Sysetup
Created July 19, 2016 23:27
Show Gist options
  • Save Sysetup/ef0cb2b8d76959c9ba76156d93170859 to your computer and use it in GitHub Desktop.
Save Sysetup/ef0cb2b8d76959c9ba76156d93170859 to your computer and use it in GitHub Desktop.
Vertical <div> center
jQuery(document).ready(function() {
App.init();
PageComingSoon.initPageComingSoon();
$('body').css('margin-top', Number($(document).height() - $('.coming-soon-v3').height())/2);
$(window).resize(function() {
$('body').css('margin-top', Number($(document).height() - $('.coming-soon-v3').height())/2);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment