代码之家  ›  专栏  ›  技术社区  ›  Chris

css3 moz线性渐变不工作

  •  4
  • Chris  · 技术社区  · 14 年前

    出于某种原因,我的webkit定义可以在chrome上运行,但在firefox 3.5.11中,我没有看到我的渐变。

    html {
      height: 100%;
    }
    body {
      height: 100%;
      background-repeat: no-repeat;
    }
    body{
      height:100%;
      background-color: #eaebeb;
      background-image: -moz-linear-gradient(top, #eaebeb, #fff);
      background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#eaebeb), to(#fff));
    }
    

    我试过一些例子 https://developer.mozilla.org/en/using_gradients 运气不好。

    3 回复  |  直到 7 年前
        1
  •  5
  •   Yi Jiang G-Man    14 年前

    阿希姆

    在页面顶部:

    Gecko 1.9.2(火狐3.6)中介绍 /雷鸟3.1/Fennec 1.0)

    当然,它在火狐3.5中不起作用。

        2
  •  2
  •   derekerdmann    14 年前

    变化 background-image background 使用渐变时。

        3
  •  0
  •   Skilldrick    14 年前

    应该是 background 不是 background-image .