/ Published in: jQuery
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$(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();
URL: http://tutorialzine.com/2010/03/centering-div-vertically-and-horizontally/