css3 moz-linear-gradient不工作

Chr*_*ris 4 firefox gradient css3

出于某种原因,我的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));
}
Run Code Online (Sandbox Code Playgroud)

我在https://developer.mozilla.org/en/using_gradients上试过没有运气的例子.

Yi *_*ang 5

咳咳

在页面顶部:

在Gecko 1.9.2中引入(Firefox 3.6/Thunderbird 3.1/Fennec 1.0)

当然它在Firefox 3.5中不起作用.