Ver Mensaje Individual
  #2 (permalink)  
Antiguo 01/12/2009, 18:17
PrendekZ
 
Fecha de Ingreso: noviembre-2009
Ubicación: Colombía
Mensajes: 311
Antigüedad: 14 años, 5 meses
Puntos: 17
Respuesta: 2 imagenes de fondo en css

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.