CSS3 Multiple Backgrounds
May 25, 2011 Leave a comment
Here is a very simple example showing the use of multiple background images in one div.
Code below:
#multipleBG {
border: 5px solid #cccccc;
background:url(img1) top left no-repeat, url(img2) bottom left no-repeat, url(img3) bottom right no-repeat;
padding: 15px 25px;
height: inherit;
width: 590px;
}


