By default, the background-image property repeats an image both horizontally and vertically.
Some images should be repeated only horizontally or vertically, or they will look strange, like this:
body
{
background-image:url('gradient2.png');
}
body
{
background-image:url('gradient2.png');
background-repeat:repeat-x;
}


