I asked a question CSS gradients with some content some time ago
I came up with a possible fix http://jsfiddle.net/aruUS/2/
html, body { min-height: 100% }
body {
background: -moz-linear-gradient(top, blue, red 200px);
background: -webkit-gradient(linear, 0 0, 0 200px, from(blue), to(red));
}
only part of Firefox works, does webkit seem to support only percentages for termination of color? Anyway, to make this work?
source
share