Firefox 3.0 CSS 阴影

发布于 2024-08-13 01:43:18 字数 299 浏览 4 评论 0原文

有什么技术可以在 Firefox 3.0 中为文本添加阴影?

FF3.5 和 Chrome 支持 CSS3 属性 drop-shadow:

p { text-shadow: #000 2px 5px; }

IE6、7、8 支持过滤器:

p { filter: shadow(color=#123456, strength=2); }

对于 Firefox 3.0 你会如何做?它使用 Gecko 渲染引擎,但这些技术都不起作用。

What is a technique to add drop-shadows to text that would work in Firefox 3.0?

FF3.5 and Chrome support the CSS3 property drop-shadow:

p { text-shadow: #000 2px 5px; }

IE6, 7, 8 support filters:

p { filter: shadow(color=#123456, strength=2); }

How would you do it for Firefox 3.0? It uses the Gecko rendering engine and none of these techniques work.

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

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

发布评论

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

评论(2

扶醉桌前 2024-08-20 01:43:18

我担心没有解决方案可以在 Firefox 3.0 中实现该功能

,仅供参考,根据以下内容: http://www.w3schools.com/browsers/browsers_firefox.asp Firefox 3.0 往往会很快消失。

I'm affraid there are no solutions to make that work in Firefox 3.0

Just FYI, ccording to this: http://www.w3schools.com/browsers/browsers_firefox.asp Firefox 3.0 tends to disappear quickly.

家住魔仙堡 2024-08-20 01:43:18

你可以尝试:

p { -moz-text-shadow: #000 2px 5px; }

但我不确定在正确实施 IYSWIM 之前它是否曾经是 FF 的一部分?

You could try:

p { -moz-text-shadow: #000 2px 5px; }

But I'm not sure if it was ever part of FF before it was implemented correctly IYSWIM?

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