background image extending browser window
CSS for large background image that extends (grows) with window:
body img.background {
z-index:10;
}
body img.background {
left:0;
min-width:1000px;
overflow:hidden;
position:absolute;
top:0;
width:100%;
z-index:-1;
}
in the HTML:
<img alt="" class="background" src="image.jpg">
Not sure what the advantages/disadvantages are with having image referenced via HTML code rather than CSS bgnd, but effect looks interesting:
http://cayena.es/




