I have <img> element called right after <body> one. The image element includes following id with attributes and serves as a background of whole page(body) with possibility of resizing(thats the function of this part of code):
How come this image overrides following id's background
And not just this id, every div which includes id from css with background
What I want is actually this picture to be under everything
Code:
#img.source-image {
width: 100%;
position: absolute;
top: 0;
left: 0;
}
How come this image overrides following id's background
Code:
#mainPicture
{
clear:both;
width:670px;
height:345px;
background-color:#160306;
}
And not just this id, every div which includes id from css with background
What I want is actually this picture to be under everything
Last edited: