I have a large image to be use as a background-image of a page. What I want is that the height of the image will be stretched to fill the height of the page. It
background-image
here is a good writeup
http://css-tricks.com/perfect-full-page-background-image/
the gist of it being
body { 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; }