Ver Mensaje Individual
  #5 (permalink)  
Antiguo 04/11/2011, 04:56
kramerIXI
 
Fecha de Ingreso: noviembre-2011
Ubicación: Valencia
Mensajes: 7
Antigüedad: 13 años
Puntos: 0
Respuesta: duda sobre el background

Cita:
Iniciado por emprear Ver Mensaje
Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <title>titulo</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6.  
  7. <style type="text/css">
  8. /*<![CDATA[*/
  9.  
  10. html, body{
  11. height :100%;
  12. padding: 0px;
  13. margin: 0px;
  14. }
  15. body {
  16. background-image: url('fondo.jpg');
  17. }
  18.  
  19. div{
  20. background-color: cyan;
  21. width: 900px;
  22. height: 100%;
  23. margin: 0px auto;
  24. }
  25.  
  26. /*]]>*/
  27. </head>
  28. <div>
  29. Contenido
  30. </div>
  31. </body>
  32. </html>

solo tenes que poner tu imagen

Saludos
Viendo esto me surge una pregunta, ¿que tal de correcto seria dar el fondo a la etiqueta <html> y luego ya el fondo de la pagina a <head>?

No se si me explico. Un saludo