Created
November 4, 2013 02:15
-
-
Save emaildano/7297166 to your computer and use it in GitHub Desktop.
Vertically Center Div
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var parentHeight = $('#parent').height(); | |
var childHeight = $('#child').height(); | |
$('#child').css('margin-top', (parentHeight - childHeight) / 2); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment