I have two images one is attached to the HTML(background) tag and is positioned bottom, left and repeat X. I have another background image attached to the body tag, that is positioned top left and also repeat X.
I noticed the Body is covering the html image. I am not sure if this is possible and I have tried searching but no solution.
Is there a way to make the body image stay under the html image?
This way the html (image attached to the background) is on top of the body (background) image?
html {
background-repeat: repeat-x;
background-position: left bottom;
background-image: url(../graphics/main-background-image-x.png);
}
body {
background-repeat: repeat-x;
background-position: left top;
background-image: url(../graphics/sub-background-image-x.png);
}
