Skip to content

Instantly share code, notes, and snippets.

@varemenos
Created July 2, 2012 23:48
Show Gist options
  • Save varemenos/3036464 to your computer and use it in GitHub Desktop.
Save varemenos/3036464 to your computer and use it in GitHub Desktop.
JQuery - Vertically Center Div
$(document).ready(function(){
$(window).resize(function(){
var target = '#main';
$(target).css({
position:'absolute',
left: ($(window).width() - $(target).outerWidth())/2,
top: ($(window).height() - $(target).outerHeight())/2
});
});
// To initially run the function:
$(window).resize();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment