<div id="background">
<img src="images/bg.jpg" class="stretch" alt="" />
</div>
#background {
width: 100%;
height: 100%;
position: absolute;
overflow: hidden;
left: 0px;
top: 0px;
z-index: 0;
}
.stretch {
width:100%;
height:100%;
}
I put this background the very first div container. It totally covered up my other pictures. I want to force this background stay behind all other elements.
How do I do that?
Thanks