Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save farnscosnippet/475faafc5704498a6a13 to your computer and use it in GitHub Desktop.

Select an option

Save farnscosnippet/475faafc5704498a6a13 to your computer and use it in GitHub Desktop.
JQUERY - Horizontal and Vertical Centering
$(window).resize(function(){
$('.className').css({
position:'absolute',
left: ($(window).width() - $('.className').outerWidth())/2,
top: ($(window).height() - $('.className').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