I have a DIV
that I would like to have 2 or more background images displayed. In the DIV
class, I defined a style with two image URLs:
.manyImages {
background: url(/a1.png), url(/a2.png) no-repeat;
}
<div class="manyImages"> </div>
My issue is how to set different background sizes for each image URL within the same DIV. Is there a way to control each individual background image on one DIV in terms of size, borders, and color?
EDIT: I need to be able to adjust the size of each image inside the DIV separately. For example, the first background image should be 20px X 20px, the second image 40px X 45px, and so forth...