Skip to content

Instantly share code, notes, and snippets.

@skounis
Created June 5, 2013 13:57
Show Gist options
  • Save skounis/5714056 to your computer and use it in GitHub Desktop.
Save skounis/5714056 to your computer and use it in GitHub Desktop.
jQuery - Center a DIV - very short
$('#myDiv').css({top:'50%',left:'50%',margin:'-'+($('#myDiv').height() / 2)+'px 0 0 -'+($('#myDiv').width() / 2)+'px'});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment