How to make multiple Background

Multiple Background Using CSS 3

Using CSS 3, we can create multiple background image on an website in one div…

Here is a very simple example showing the use of multiple background images in one div.
Is this the end of nested elements with tons of CSS to create a layered effect? Hope so…

This is the syntax of CSS about multiple background  image:

#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;
}

Browser Support:
FireFox 3.6 and later, Google Chrome 1.0, Opera 9.6, Safari 3.2.1

EXAMPLE