尝试将 webkit 渐变转换为 moz:格式错误
我正在尝试在此 页面 中导入下面的渐变(“从 CSS 导入”):
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.25, #ACACAC, color-stop(4, #dfdfdf));
但我遇到了这个错误:
无法解析渐变 CSS。请检查格式并重试。
有什么想法吗?
哈维尔
I'm trying to import the gradient below in this page ("Import from CSS"):
background:-webkit-gradient( linear, left top, left bottom, color-stop(0.25, #ACACAC, color-stop(4, #dfdfdf));
but I'm gettin this error:
Couldn't parse gradient CSS. Please check the format and try again.
Any idea?
Javier
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的第一个
color-stop
缺少右括号You're missing a closing bracket on your first
color-stop