css 背景大小在 FF 3.6.x 中不起作用吗?

发布于 2024-11-29 11:21:23 字数 257 浏览 14 评论 0原文

在 FF 3.6 中查看我的网站:

www.compversions.com 并在其他所有较新的浏览器(FF4+、Chrome)中查看它最新版本、IE9 等),它们看起来都很好。

在ff 3.6中,标志和变色龙太大了。

这里有什么解决办法,或者我需要清除缓存什么的,因为你们在 ff 3.6 中没有看到任何问题?

谢谢。

Checkout my site in FF 3.6:

www.compversions.com and look at it in every other newer browser (FF4+, Chrome latest builds, IE9, etc.) and they all look fine.

In ff 3.6, the logo and the chameleon are too big.

What's the fix here, or do I need to clear my cache or something because you guys don't see any problems in your ff 3.6?

Thanks.

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

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

发布评论

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

评论(1

摘星┃星的人 2024-12-06 11:21:23

根据何时可以使用,需要在background-size前面加上前缀-moz- 的 code> 属性:

-moz-background-size: <your settings>;
background-size: <your settings>;

确保将 background-size 最后放置,以便它覆盖供应商特定的前缀。

According to When can I use, you need to prefix the background-size property with -moz- in Firefox 3.6:

-moz-background-size: <your settings>;
background-size: <your settings>;

Make sure you put background-size last so it overrides the vendor-specific prefix.

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