Firefox 3 Mac 的 CSS 破解

发布于 2024-11-08 15:02:30 字数 103 浏览 0 评论 0原文

无需做太多工作,我需要在 PC 上将 CSS 类的高度设置为 570px,但在 Mac 上的 Firefox 上将高度设置为 610px。有没有快速简单的 CSS hack 可以解决这个问题?

Without doing a lot, I need to make a height in my CSS class be 570px on PC, but 610px on Firefox on Mac. Is there a quick and easy CSS hack for this?

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

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

发布评论

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

评论(1

一桥轻雨一伞开 2024-11-15 15:02:30

我建议使用类似 http://snipplr.com/view/625 /浏览器检测-lite--v21/
检测客户端正在使用哪个浏览器/操作系统,并在加载时将类附加到 HTML 或 BODY 标记,说明浏览器(+ 版本)和操作系统。

然后在您的样式表上您可以执行以下操作(例如):

 .win.ff3 #whatever { height: 570px; }
 .mac.ff3 #whatever { height: 610px; }

I would suggest using something like http://snipplr.com/view/625/browser-detect-lite--v21/
to detect which browser/OS the client is using, and from that attach classes to the HTML or BODY tag on load stating the browser (+ version) and OS.

then on your stylesheet you could do (for example):

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