You can do this as explained in this tutorial.
From the tutorial, the easy CSS way of doing this is to use the background-size property.
html {
background: url(images/bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
Cover lets the image stretch while keeping aspect ratio, so that one dimension of the containing area is fully used. Alternative values are contain, which stretches the image with its aspect ratio to completely fit into the area, or 100% 100% which stretches the image while destroying aspect ratio.
You may also want to take a look at the CSS 3 reference at w3schools