Firefox 3.5 的 CSS 渐变

发布于 2024-09-07 11:28:31 字数 434 浏览 5 评论 0原文

我想要完成的是仅使用 css 创建渐变...我正在做的工作适用于除 firefox 3.5 之外的所有浏览器...这是代码:

 #gradient {
      color: #fff;
      height:50px;
      padding:0;
      width:940px;
      margin:0 auto;            
      background: -moz-linear-gradient(top, #CFE782 0%, #9BCB2A 2%,#5DA331 97%, #659635 100%);/* For Mozilla/Gecko (Firefox etc) */
 }

我省略了其他浏览器的背景...所以这里是我的问题...

有谁知道为什么这在 Firefox 3.5 中不起作用以及什么可以起作用???

What I'm trying to accomplish is creating a gradient using only css... What I'm doing works in all browsers except firefox 3.5...here's the code:

 #gradient {
      color: #fff;
      height:50px;
      padding:0;
      width:940px;
      margin:0 auto;            
      background: -moz-linear-gradient(top, #CFE782 0%, #9BCB2A 2%,#5DA331 97%, #659635 100%);/* For Mozilla/Gecko (Firefox etc) */
 }

I left out the background for the other browsers... SO here's my question...

Does anyone know why this is not working in Firefox 3.5 and what would work???

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

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

发布评论

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

评论(1

心是晴朗的。 2024-09-14 11:28:31

据我所知,它不起作用的原因是 -moz-linear-gradient 是在 Firefox 3.6 中才引入的。

As far as I know, the reason why its not working is because -moz-linear-gradient was only introduced in Firefox 3.6.

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