Place an image behind a web page

To have the image automatically resize so it looks nice.

<style type="text/css">

html {

background: url(images/maroonbells3.jpg) no-repeat center center fixed;

-webkit-background-size: cover;

-moz-background-size: cover;

-o-background-size: cover;

background-size: cover;

}

</style>