Firefox 3.5 的 CSS 渐变
我想要完成的是仅使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,它不起作用的原因是
-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.