Firefox 中的 CSS 高度差异

发布于 2025-01-06 13:22:30 字数 522 浏览 1 评论 0原文

我正在尝试使用以下 javascript/jquery 代码将表(templtableselect)中的 th 元素的高度设置为与另一个表(templtable)中的 th 元素的高度相同:

var thheight = $('table#templtable th').css("height");
$('table#templtableselect th').css({"height":thheight, "border":"0px"});

在 chrome 中一切正常,但在 firefox 中是1个像素的差异。我还尝试了 .height() 函数,但结果相同。

当我用firebug分析firefox中的元素时,结果如下:

Templtable
size 105 x 34
border 1

Templtableselect
size 44 x 33
border 1

您也可以看到相同的1像素差异。

知道什么会导致这种差异吗?

谢谢

I am trying to set the height of a th element in a table (templtableselect) the same as the height of the th element in another table (templtable) using the following javascript/jquery code:

var thheight = $('table#templtable th').css("height");
$('table#templtableselect th').css({"height":thheight, "border":"0px"});

In chrome everything works fine, but in firefox there is 1 pixel difference. I also tried the .height() function, but that resulted in the same outcome.

When I analyse the elements in firefox with firebug the result is as following:

Templtable
size 105 x 34
border 1

Templtableselect
size 44 x 33
border 1

You can see the same difference of 1 pixel as well.

Any idea what can causes this difference?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

通知家属抬走 2025-01-13 13:22:30

尝试使用 outerHeight() 代替,它将边框和填充添加到高度。

var thheight = $('table#templtable th').outerHeight();
$('table#templtableselect th').css({"height":thheight, "border":"0px"});

Try using outerHeight() instead, it adds the border and padding to the height.

var thheight = $('table#templtable th').outerHeight();
$('table#templtableselect th').css({"height":thheight, "border":"0px"});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文