我有一堆随机高度和宽度的图像,需要垂直和水平居中。
无论出于何种原因,它停止工作。有人可以帮忙吗?我不了解 jQuery(有人给了我代码)。
//jQuery by Juan Mendes
$(window).load(function(){
var $img = $('img');
$img.css({'display': 'block',
'margin-left': '-' + ($img.width() / 2) + 'px',
'margin-top': '-' + ($img.height() / 2) + 'px'});
});