JQuery UI 选项卡未正确显示 - Internet Explorer

发布于 2024-10-19 00:54:11 字数 401 浏览 3 评论 0原文

我正在尝试开始使用 Jquery UI 选项卡,但在他们网站上的演示中遇到了问题。它在网站本身上对我来说运行良好,但是当我下载源代码和所有其他文件以在我的计算机上运行它时,它最初会正确呈现,如下所示: 正确的选项卡行为 但是当我单击任何其他选项卡时,它们会呈现如下所示: 不正确的选项卡行为

单击最左边的选项卡总是使事情看起来正确,但单击其他​​选项卡会导致我圈出的行不正确被渲染。它在 Firefox 和 Chrome 中对我来说工作得很好。 以前有其他人见过这样的事情吗?

如果您能提供一些建议,我将不胜感激。

谢谢,
-标记

I'm trying to get started with Jquery UI tabs and I'm running into an issue with the demo they have on their site. It runs fine for me on the site itself, but when I download the source and all the other files to run it on my machine, it initially renders correctly like this:
Correct Tabs behavior
but when i click on any of the other tabs, they render like this:
Incorrect Tabs behavior

Clicking the leftmost tab always makes things look correct, but clicking the other tabs cause the lines I have circled not to be rendered. It works fine for me in Firefox and Chrome.
Has anyone else seen something like this before?

I'd be really grateful for some advice.

Thanks,
-Mark

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

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

发布评论

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

评论(1

送你一个梦 2024-10-26 00:54:11

我发现了这个问题。它在 JQueryUI CSS 中。它定义 .ui-tabs .ui-tabs-nav li 元素如下:

.ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; }

当它应该是时

.ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em -1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; }

,即 margin 的 1px 应该是 -1px

I found the issue. Its in the JQueryUI CSS. Its defining the .ui-tabs .ui-tabs-nav li elements like this:

.ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; }

when it should be

.ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em -1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; }

i.e. 1px should be -1px for the margin

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文