can anyone show me how to make the background colour fade from top of the page to the bottom. one example is at http://www.msn.com/. Thanks.
can anyone show me how to make the background colour fade from top of the page to the bottom. one example is at http://www.msn.com/. Thanks.
create a very very tall 5 pixel wide gradient, then assign it to repeat across the x axis of the body
Code:<style type="text/css"> body { background: url('/path/to/tall/image.gif') repeat-x top left; }
Bookmarks