Skip to content

Instantly share code, notes, and snippets.

@chrdesigner
Created July 20, 2015 12:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrdesigner/5a54674d9ea74ffdd447 to your computer and use it in GitHub Desktop.
Save chrdesigner/5a54674d9ea74ffdd447 to your computer and use it in GitHub Desktop.
Vertical Align with jQuery
$(function() {
$('.classVerticalAlign').css({
'position' : 'absolute',
'left' : '50%',
'top' : '50%',
'margin-left' : -$('.classVerticalAlign').outerWidth()/2,
'margin-top' : -$('.classVerticalAlign').outerHeight()/2
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment