Having trouble understanding how to position multiple background images with CSS3. I'm struggling to get them to display at the top, middle, and bottom of the page. Can you help me figure out how to make an image appear at different positions using a 100px x 100px block for illustration?
CSS
body {
background-image:
url(../images/red.png),
url(../images/blue.png),
url(../images/yellow.png);
background-position: left top, center top, right top;
background-repeat: no-repeat;
}
I would like the images to be positioned at left top, left center, and then left bottom.
Any assistance is greatly appreciated.