gpt4 book ai didi

javascript - 使用 Jquery 居中元素

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

我试图让一个元素居中。元素可能会改变宽度,因此我不能使用 margin: 0 auto 的 CSS 方法。

这是我的代码:

$.fn.center = function() {
$(this).css({
'margin-left': ($(this).parent().innerWidth() - $(this).outerWidth()) / 2 + "px",
'margin-right': ($(this).parent().innerWidth() - $(this).outerWidth()) + ($(this).outerWidth() / 2) + "px"
});
};
$('#nav').center();

不幸的是,这不起作用。你能帮我弄清楚为什么吗?我应该使用绝对定位吗?

谢谢。

最佳答案

不需要这一切..

由于您要将子元素(li)设为内联 block ,只需将容器 #nav 设置为 text-align:中心.

并且根本不设置任何边距..

关于javascript - 使用 Jquery 居中元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10573777/

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