For some reason my webkit definition works on chrome but in firefox 3.5.11 I am not seeing my gradient.
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));
}
I have tried examples on https://developer.mozilla.org/en/using_gradients with no luck.