0

我正在尝试使用 CSS 和 jQuery 的组合将一系列对象水平居中。jQuery 部分是我遇到的麻烦。这是我的代码:

$('.tooltip').each(function() {
        $(this).css('margin-left', 0 - ($(this).width / 2) );
}

上面的代码应该应用一个负边距,它正好是对象宽度的一半。我究竟做错了什么?

4

2 回答 2

2
$('.tooltip').each(function() {
        $(this).css('margin-left', '-'+($(this).width() / 2)+'px');
}
于 2012-04-28T16:00:18.470 回答
1
.tooltip {
   position: absolute; 
   width: 300px; // suppose
   left: 50%;
   margin-left: -150px; // half of the width
}

使用 jQuery:

$('.tooltip').each(function() {
        $(this).css('margin-left', '-' + $(this).width / 2 + 'px');
}
于 2012-04-28T15:58:09.920 回答