Skip to content

Instantly share code, notes, and snippets.

@andershaig
Created November 14, 2011 23:49
Show Gist options
  • Save andershaig/1365606 to your computer and use it in GitHub Desktop.
Save andershaig/1365606 to your computer and use it in GitHub Desktop.
Center Images Vertically & Horizontally
$(window).load(function () {
var button_w = $('#button img').height();
var button_h = $('#button img').width();
var margin_left = button_w / 2 * -1;
var margin_top = button_h / 2 * -1;
$('#button').css('marginLeft', margin_left);
$('#button').css('marginTop', margin_top);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment