gpt4 book ai didi

javascript - jQuery:水平居中绝对定位对象

转载 作者:太空宇宙 更新时间:2023-11-04 00:18:15 24 4
gpt4 key购买 nike

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

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

上面的代码应该应用一个负的 margin-left,它恰好是对象宽度的一半。我做错了什么?

最佳答案

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

关于javascript - jQuery:水平居中绝对定位对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10365146/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com