I'm using a radial gradient as the background on my webpage, like so:
background-image: -webkit-gradient(radial, 100% 100%, 10, 90% 90%, 600, from(#ccc), to(#000));
It works, but when the content does not fill the whole page the gradient is cut off. How can I make the <body> element fill the entire page, always?
body { width: 100%; height: 100%; }doesn't work? – Alex Apr 19 '11 at 19:57body { width: 100%; height: 100%; }doesn't work. I guess I have to apply it to<html>too. – rynah Apr 20 '11 at 0:44