css3 线性渐变背景图像在 Opera 11.11 中不起作用
Opera 11.10 Ubuntu 10.04 64 位:工作
Opera 11.11 Windows 7 64 位:不工作
background-color: #D22027;
background-image: linear-gradient(bottom, #D22027, #444444);
background-image: -moz-linear-gradient(bottom, #D22027, #444444);
background-image: -webkit-linear-gradient(bottom, #D22027, #444444);
background-image: -o-linear-gradient(bottom, #D22027, #444444);
有什么想法吗?
Opera 11.10 Ubuntu 10.04 64 Bit : WORKING
Opera 11.11 Windows 7 64 Bit : NOT WORKING
background-color: #D22027;
background-image: linear-gradient(bottom, #D22027, #444444);
background-image: -moz-linear-gradient(bottom, #D22027, #444444);
background-image: -webkit-linear-gradient(bottom, #D22027, #444444);
background-image: -o-linear-gradient(bottom, #D22027, #444444);
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的渐变代码是错误的,它不是图像,
现在它们在 safari、crome、opera、opera next、IE 和 firefox 中为我工作。
并添加这些以实现兼容性
,您可以使用
http://www.colorzilla.com/gradient-editor/
用于快速创建高兼容梯度和/或用于学习。
your gradient code is wrong its not a image
now they work for me in safari,crome,opera,opera next,IE and firefox.
and add these for compatibility
and you can use
http://www.colorzilla.com/gradient-editor/
for quick creation of high compatible gradients and/or for learning.