【问题标题】:css3 linear-gradient background-image not working in opera 11.11css3线性渐变背景图像在opera 11.11中不起作用
【发布时间】:2011-06-06 14:01:54
【问题描述】:

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);

有什么想法吗?

【问题讨论】:

    标签: css opera linear-gradients


    【解决方案1】:

    您的渐变代码是错误的,它不是图像

    background:         linear-gradient(bottom, #D22027, #444444);
    background:    -moz-linear-gradient(bottom, #D22027, #444444);
    background: -webkit-linear-gradient(bottom, #D22027, #444444);
    background:      -o-linear-gradient(bottom, #D22027, #444444);
    

    现在他们在 safari、crome、opera、opera next、IE 和 firefox 中为我工作。 并添加这些以实现兼容性

    /* Chrome before 10,Safari4+ */
    background: -webkit-gradient(bottom, #D22027, #444444);
    /* IE10 */
    background:     -ms-linear-gradient(bottom, #D22027, #444444);
    

    你可以使用 http://www.colorzilla.com/gradient-editor/ 用于快速创建高度兼容的梯度和/或用于学习。

    【讨论】:

    • background-image 中使用渐变并没有错。检查css3please
    猜你喜欢
    • 2021-09-08
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多