Firefox 3.0 CSS 阴影
有什么技术可以在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我担心没有解决方案可以在 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.
你可以尝试:
但我不确定在正确实施 IYSWIM 之前它是否曾经是 FF 的一部分?
You could try:
But I'm not sure if it was ever part of FF before it was implemented correctly IYSWIM?