Ver Mensaje Individual
  #14 (permalink)  
Antiguo 13/07/2009, 09:13
Avatar de willyfc
willyfc
 
Fecha de Ingreso: octubre-2008
Ubicación: Santa Cruz - Bolivia
Mensajes: 662
Antigüedad: 15 años, 6 meses
Puntos: 40
Respuesta: problema background

Bueno, esta es la forma en que yo lo haría:

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. <style type="text/css">
  6. html, body {margin:0; padding:0; width:100%; height:100%; overflow:hidden;}
  7. .imagen{position:absolute; z-index:1; width:100%; height:100%;}
  8. .contenido{ width:800px; height:300px; border:1px solid #333; margin:0 auto; position:relative; z-index:2}
  9. </head>
  10.  
  11. <div>
  12. <img class="imagen" src="Imagen de un apretón de manos, un blanco y un negro.jpg" />
  13. </div>
  14. <div class="contenido">
  15.     Aqui va el contenido
  16. </div>
  17. </body>
  18. </html>
__________________
WFC
codigo82