I have some css that specifies an image as the background for the page body
body
{
background-image: url(../images/EBSMainBackground.jpg);
background-repeat: no-repeat;
background-position: left bottom;
font-family: Trebuchet MS;
font-size: 12px;
background-attachment: scroll;
}
this works fine until I maximise the width of my web page and the image cuts off horizontally (obviously the width of the image is less than the full page width)
Is there a way with CSS that will stretch the background image so that it will always fit the whole page width no matter what size ?