与原始网站相比,我的网站上的 HTML 元素显示得更大?

发布于 2024-12-29 07:49:29 字数 700 浏览 1 评论 0原文

我在我的网站上使用不同的 jQuery 插件。例如jQuery通知jQuery blockackUIjQuery UI DatePicker。但与具有相同配置、相同浏览器和相同分辨率的原始网站相比,所有这些在我的网站上显示得更大。我的网站中有很多 css 文件,但我不知道是什么影响了所有这些文件的大小。有什么想法吗?谢谢

示例 1:

插件官方网站原创:

在此处输入图像描述

在我的网站上:

在此处输入图像描述

示例 2

原创于插件官方网站:

在此处输入图像描述

在我的网站上:

在此处输入图像描述

I am using different jQuery plugins on my site. For example jQuery Notice, jQuery bloackUI and jQuery UI DatePicker. But all these are shown bigger on my site when compared to original one with same configuration, on same browser and with same resolution. There are many css files in my site but I don't know what is effecting the size of all these. Any Idea ? Thanks

Example 1:

Original on Plugin official site:

enter image description here

On My website:

enter image description here

Example 2

Original on Plugin official site:

enter image description here

On My site:

enter image description here

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

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

发布评论

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

评论(3

浴红衣 2025-01-05 07:49:29

jQuery UI 网站的

body {
   font-size: 10px
}

其余尺寸,以及 jQuery UI 对话框、日期选择器等,都具有与此相对应的尺寸。

只需检查:http://jsfiddle.net/6YfGc/

jQuery UI sites got

body {
   font-size: 10px
}

Rest of sizes, also jQuery UI dialogs, datepickers etc, got sizes relatively to that.

Just check: http://jsfiddle.net/6YfGc/

像极了他 2025-01-05 07:49:29

使用 DOM 检查器(Chrome 的 Inspect Element 工具、IE 的开发人员工具、Firebug...)来查看哪些样式应用于您的元素。找出什么是最重要的,然后像这样修复它。

Use a DOM inspector (Chrome's Inspect Element tool, IE's Developer Tools, Firebug...) to see what styles are being applied to your elements. Find out what's overriding what and fix it like that.

往事随风而去 2025-01-05 07:49:29

安装FireBug之类的东西。这将使您能够看到哪些 CSS 规则正在影响 DOM 中的不同元素。然后您将能够将其追溯到指定样式表中的特定行。之后,您可以更改流氓规则,或者您可以设置自己的更专门的规则,以使其按照您想要的方式显示。

Install something like FireBug. That will allow for you to see what CSS rules are affecting the different elements in the DOM. Then you'll be able to trace it back to the specific line in the specified stylesheet. After that point, you can either change the rogue rule, OR you can set up a more specialized rule of your own, to have it display the way you want.

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