Skip to content

Instantly share code, notes, and snippets.

@alex-boom
Created January 5, 2017 22:27
Show Gist options
  • Save alex-boom/30e093f925e8c2b207d74b4b7d5a9e7f to your computer and use it in GitHub Desktop.
Save alex-boom/30e093f925e8c2b207d74b4b7d5a9e7f to your computer and use it in GitHub Desktop.
center-element
var heightBody = $('body').height();
var heightBlock = $('.block').height();
var calc = heightBlock - heightBody;
var result = calc / 2;
$('.block')
.css({
marginTop: result + 'px',
marginBottom: result + 'px'
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment