I have a div that I want to apply two backgrounds to it. Basically, I have one small picture that will repeat throughout the div, and the other large (without repeats). I tried to make two divs of the same size, superimposed on one another, and here is the CSS code that it works, but I want to do it in a more fashionable way.
.science_wrap{ background-image: url(../bg/graph-paper-background.png); width:100%; height: 694px; margin: 0 auto;
}
.science { background-image: url(../bg/prospectus-science-line.png); width:100%; height: 694px; margin: 0 auto;
}
In addition, I have another div that will have one strip on top (I have a bg image for it) and I want to overlay another image on it, any tips or tricks to do this?
source share