|
Hi all,
I'm trying to stretch an image with CSS using the body tag.
Here is the CSS code:
/*Background repeat on body*/
body {
background-repeat:repeat-x;
background:url(../images/blue_background.jpg);
background-color:#FFFFFF;
margin-top: 0px;
margin-bottom: auto;
blue_background.jpg is 10px in height and 3000px in width
I applied a white background so it won't repeat in the y-axis, but it repeated in both firefox and IE
|