Skip to content

Instantly share code, notes, and snippets.

@djanix
Created April 13, 2012 17:16
Show Gist options
  • Save djanix/2378450 to your computer and use it in GitHub Desktop.
Save djanix/2378450 to your computer and use it in GitHub Desktop.
js -> vertical align
verticalAlign(yourElement);
function verticalAlign(el) {
var height = el.height();
var parentHeight = el.parent().height();
var padding = (parentHeight - height) / 2;
el.css('padding-top', padding);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment