Ver Mensaje Individual
  #1 (permalink)  
Antiguo 18/02/2010, 07:59
argoz1022
 
Fecha de Ingreso: octubre-2009
Mensajes: 6
Antigüedad: 14 años, 5 meses
Puntos: 0
problema en vista previa

Holas, tengo un problemilla, estoy creando mi primer pag web con CSS y dreamweaver CS4.

las imagenes las estoy llamando todo directamente de CSS y todo esta bien y me mustra todo normal hasta el momento que le doy vista previa en IE, firefox o Chrome, toda la web me aprece en blanco la verdad nose que es, ya que sin vista previa veo todo bien.

espero pronto su ayuda gracias.

ACA HTML.

Código HTML:
Ver original
  1.  
  2. <title>xpressive</title>
  3. <link rel="stylesheet" type="text/css" href="/css/master.css" />
  4.  
  5. </head>
  6.  
  7. <div class="cuerpo">
  8. <table class="menu">
  9.   <tr>
  10.     <td class="logo"></td>
  11.     <td class="inicio"></td>
  12.     <td class="acerca"></td>
  13.     <td class="servicios"></td>
  14.     <td class="portafolio"></td>
  15.     <td class="contacto"></td>
  16.   </tr>
  17.  
  18. <div class="flash" ></div>
  19. </div>
  20. </body>
  21. </html>

aca el CSS
Código CSS:
Ver original
  1. *{background-color:#000;}
  2.  
  3. .cuerpo {background-image:url(../images/fondo.jpg); top:auto; width:100%; padding-top:70px;}
  4.  
  5. .logo{background-image:url(../images/logo.jpg); padding: 0; height:123px; width:390; background-repeat:no-repeat;}
  6.  
  7. .inicio{background-image:url(../images/inicio.jpg); height:121px; width:81; background-repeat:no-repeat;}
  8.  
  9. .acerca{background-image:url(../images/acerca.jpg);   height:121px; width:93; background-repeat:no-repeat;}
  10.  
  11. .servicios{background-image:url(../images/servicios.jpg);  height:121px; width:103; background-repeat:no-repeat;}
  12.  
  13. .portafolio{background-image:url(../images/portafolio.jpg);  height:121px; width:133; background-repeat:no-repeat;}
  14.  
  15. .contacto {background-image:url(../images/contacto.jpg);   height:121px; width:126; background-repeat:no-repeat;}
  16.  
  17. .flash{background-image:url(../images/flash.png); height:415px; width:886; background-repeat:no-repeat; margin-left:145px; margin-right:125px;}
  18.  
  19. .menu{background-color:#000; height:100%; width:100%;}