CSS2 can't do this but you could put 3 divs inside a container, each with a different background image:
.box { width:100%; height:100%; position:absolute; top:0px; right:0px }
.bg1 { background-image: url( <..image 1 url> ); }
.bg2 { background-image: url( <..image 1 url> ); }
.bg3 { background-image: url( <..image 1 url> ); }
.container { width:400px; height: 400px; position:relative; }
The HTML
...
<div class="container">
<div class="box bg1"> </div>
<div class="box bg2"> </div>
<div class="box bg3"> </div>
</div>
This way you can control which is displayed in which order using the z-index attribute.
You could use a fourth div to put your content in, separating the backgrounds from the content
Hope this helps