Ver Mensaje Individual
  #2 (permalink)  
Antiguo 26/06/2012, 22:59
JhormanHkr
 
Fecha de Ingreso: mayo-2011
Ubicación: Colombia
Mensajes: 18
Antigüedad: 13 años
Puntos: 0
Respuesta: no puedo superponer imagenes y ponerlas una al lado de la otra

Hola,
mira a ver si esto es lo que buscas hacer... te dejo el codigo. Puedes usar el formato de listas para hacer tal cosa...

Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4. <title>Untitled Document</title>
  5. ul li{
  6.     position:relative; 
  7.     width:150px;
  8.     height:150px;
  9.     background-image:url(http://static.photaki.com/Paisaje-Utah--293707.jpg);
  10.     list-style:none;
  11.     display:inline-block;
  12. }
  13. #contenedor-derecha{
  14. }
  15. </head>
  16. <ul>
  17. <li><img src="http://t0.gstatic.com/images?q=tbn:ANd9GcRfn3U7x97TTVLuuFPy3Yfhu57xGdfInB_0v34DPbK5eMbOmM07XAepbw" /></li>
  18. <li><img src="http://cdn.holidaywatchdog.com/ta/photo-t/02/37/42/40/paisaje.jpg" /></li>
  19. <li><img src="http://www.decorazongallery.com/gallery/artist/mariajose/thumbs/paisaje_final_1.jpg" /></li>
  20. </ul>
  21. </body>
  22. </html>