Está nueva función solo está para CSS3 y todabía no está muy funcional aún.
Si quieres puedes crear 2 divs y hacerlo.
HTML:
Cita: <div id="fondo1">
<div id="fondo2"></div> <!-- Cerramos la div de fondo2 -->
</div> <!-- Cerramos la div de fondo1 -->
Ahora el CSS:
Cita: #fondo1{
width:100px;
height:100px;
background-image: url(images/fondo1.png);
background-repeat: repeat-x;
}
#fondo2{
width:100px;
height:100px;
background-image: url(images/fondo2.png);
background-repeat: repeat-x;
}
Modifica el ancho y alto de los divs, y la url de las imágenes.
Saludos.